blob: b597997908d1f3475b788fa175bc296f998bd922 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# $Id$
install-user-and-group: .FORCE
@if /usr/bin/dscl . -read "/Groups/${RPKI_GROUP}" >/dev/null 2>&1; \
then \
echo "You already have a group \"${RPKI_GROUP}\", so I will use it."; \
elif gid="$$(/usr/bin/dscl . -list /Groups PrimaryGroupID | /usr/bin/awk 'BEGIN {gid = 501} $$2 >= gid {gid = 1 + $$2} END {print gid}')" && \
/usr/bin/dscl . -create "/Groups/${RPKI_GROUP}" && \
/usr/bin/dscl . -create "/Groups/${RPKI_GROUP}" RealName "${RPKI_GECOS}" && \
/usr/bin/dscl . -create "/Groups/${RPKI_GROUP}" PrimaryGroupID "$$gid" && \
/usr/bin/dscl . -create "/Groups/${RPKI_GROUP}" GeneratedUID "$$(/usr/bin/uuidgen)" && \
/usr/bin/dscl . -create "/Groups/${RPKI_GROUP}" Password "*"; \
then \
echo "Added group \"${RPKI_GROUP}\"."; \
else \
echo "Adding group \"${RPKI_GROUP}\" failed..."; \
echo "Please create it, then try again."; \
exit 1; \
fi; \
if /usr/bin/dscl . -read "/Users/${RPKI_USER}" >/dev/null 2>&1; \
then \
echo "You already have a user \"${RPKI_USER}\", so I will use it."; \
elif uid="$$(/usr/bin/dscl . -list /Users UniqueID | /usr/bin/awk 'BEGIN {uid = 501} $$2 >= uid {uid = 1 + $$2} END {print uid}')" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" UserShell "/usr/bin/false" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" RealName "${RPKI_GECOS}" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" UniqueID "$$uid" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" PrimaryGroupID "$$gid" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" NFSHomeDirectory "/var/empty" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" GeneratedUID "$$(/usr/bin/uuidgen)" && \
/usr/bin/dscl . -create "/Users/${RPKI_USER}" Password "*"; \
then \
echo "Added user \"${RPKI_USER}\"."; \
else \
echo "Adding user \"${RPKI_USER}\" failed..."; \
echo "Please create it, then try again."; \
exit 1; \
fi
install-shared-libraries: .FORCE
@echo "Copying required shared libraries"
@shared_libraries="${RCYNIC_DIR}/bin/rcynic ${RCYNIC_DIR}/bin/rsync"; \
while true; \
do \
closure="$$(/usr/bin/otool -L $${shared_libraries} | /usr/bin/awk '/:$$/ {next} {print $$1}' | /usr/bin/sort -u)"; \
if test "x$$shared_libraries" = "x$$closure";
then \
break; \
else \
shared_libraries="$$closure"; \
fi; \
done; \
for shared in /usr/lib/dyld $$shared_libraries; \
do \
if /bin/test -r "${RCYNIC_DIR}/$${shared}"; \
then \
echo "You already have a \"${RCYNIC_DIR}/$${shared}\", so I will use it"; \
elif /usr/bin/install -m 555 -o root -g wheel -p "$${shared}" "${RCYNIC_DIR}/$${shared}"; \
then \
echo "Copied $${shared} into ${RCYNIC_DIR}"; \
else \
echo "Unable to copy $${shared} into ${RCYNIC_DIR}"; \
exit 1; \
fi; \
done
install-rc-scripts:
${INSTALL} -o root -g wheel -d ${DESTDIR}/Library/StartupItems/RCynic
${INSTALL} -o root -g wheel -m 555 \
rc-scripts/darwin/RCynic \
rc-scripts/darwin/StartupParameters.plist \
${DESTDIR}/Library/Startup/RCynic
|