blob: 9b166e843b6ce27b12ff02ab1400fa22a7d4ae5b (
plain)
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
|
#!/bin/sh
PATH=/bin:/usr/sbin:/usr/bin:/usr/sbin
user=%%BOINC_CLIENT_USER%%
group=%%BOINC_CLIENT_GROUP%%
home="%%BOINC_CLIENT_HOME%%"
option_manager=%%OPTION_MANAGER%%
option_user=%%OPTION_USER%%
case $2 in
POST-INSTALL)
if [ -n "${option_user}" ] ; then
if [ -n "${option_manager}" -a ! -e "${home}/skins" -a ! -L "${home}/skins" ]; then
ln -s "%%PREFIX%%/share/boinc/skins" "${home}/skins"
fi
if [ ! -e "${home}/ca-bundle.crt" -a ! -L "${home}/ca-bundle.crt" ]; then
ln -s "%%LOCALBASE%%/share/certs/ca-root-nss.crt" "${home}/ca-bundle.crt"
fi
echo "Adjusting file ownership in \"${home}\" to ${user}:${group}"
chown -hR ${user}:${group} "${home}"
fi
;;
esac
exit 0
|