updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / boinc-svn / boinc.install
blob82e6f83ddf6b11f2da7bfe5662355ca279ed9e9f
1 # arg 1:  the new package version
2 post_install() {
3   /usr/sbin/groupadd boinc 2>/dev/null || true
4   /usr/sbin/useradd -s /bin/bash -g boinc -d /var/lib/boinc boinc 2>/dev/null || true
6   if [ ! -d /var/lib/boinc ]; then
7     install -d /var/lib/boinc
8   fi
9   chown -R boinc:boinc /var/lib/boinc
11   echo '>>> Client RPC password can be found in /var/lib/boinc/gui_rpc_auth.cfg'
12   echo '>>> (this file is generated after first run of /etc/rc.d/boinc start).'
13   echo '>>> '
14   echo '>>> Remove it from gui_rpc_auth.cfg if you do not want to use password.'
17 # arg 1:  the old package version
18 post_remove() {
19   /usr/sbin/userdel boinc
20   /usr/sbin/groupdel boinc
22   echo '>>> If you really do not want to run Boinc in the future, you may completely remove the directory "/var/lib/boinc".'