forcing monkeysphere shell to bash for FreeBSD.
[monkeysphere.git] / packaging / freebsd / pkg-install
1 #!/bin/sh
2
3 # an installation script for monkeysphere (borrowing liberally from
4 # postgresql and mysql pkg-install scripts, and from monkeysphere's
5 # debian/monkeysphere.postinst)
6
7 # Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
8 # Copyright 2008
9
10 # FIXME: is /var/lib/monkeysphere the right place for this stuff on
11 # FreeBSD?
12
13 # PostgreSQL puts its data in /usr/local/pgsql/data
14
15 # MySQL puts its data in /var/db/mysql
16
17 VARLIB="/var/monkeysphere"
18
19 case $2 in
20 POST-INSTALL)
21         USER=monkeysphere
22         GROUP=${USER}
23         UID=641
24         GID=${UID}
25         SHELL=/usr/local/bin/bash
26
27         if pw group show "${GROUP}" 2>/dev/null; then
28                 echo "You already have a group \"${GROUP}\", so I will use it."
29         else
30                 if pw groupadd ${GROUP} -g ${GID}; then
31                         echo "Added group \"${GROUP}\"."
32                 else
33                         echo "Adding group \"${GROUP}\" failed..."
34                         exit 1
35                 fi
36         fi
37
38         if oldshell=`pw user show "${USER}" 2>/dev/null`; then
39             if [ x"$oldshell" != x"$SHELL" ]; then
40                 echo "You already have a \"${USER}\" user, but its shell is '$oldshell'."
41                 echo "This package requires that \"${USER}\"'s shell be '$SHELL'."
42                 echo "You should fix this by hand and then re-install the package."
43                 echo "   hint: pw usermod '$USER' -s '$SHELL'"
44                 exit 1
45             fi
46             echo "You already have a user \"${USER}\" with the proper shell, so I will use it."
47         else
48                 if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
49                         -d "$VARLIB" -s /usr/local/bin/bash -c "monkeysphere authentication user,,,"
50                 then
51                         echo "Added user \"${USER}\"."
52                 else
53                         echo "Adding user \"${USER}\" failed..."
54                         exit 1
55                 fi
56         fi
57
58         ## set up the cache directories:
59
60         install -d -o root -g monkeysphere -m 750 "$VARLIB"/gnupg-host
61         cat <<EOF > "$VARLIB"/gnupg-host/gpg.conf
62 list-options show-uid-validity
63 EOF
64
65         install -d -o monkeysphere -g monkeysphere -m 700 "$VARLIB"/gnupg-authentication
66 # install authentication gpg.conf
67         cat <<EOF > "$VARLIB"/gnupg-authentication/gpg.conf
68 list-options show-uid-validity
69 primary-keyring $VARLIB/gnupg-authentication/pubring.gpg
70 keyring $VARLIB/gnupg-host/pubring.gpg
71 EOF
72         chown monkeysphere:monkeysphere "$VARLIB"/gnupg-authentication/gpg.conf
73
74         monkeysphere-server diagnostics
75         ;;
76 esac