blob: cf06b09fe7d0a0493bbce48ef29fa0545a68b07c (
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
27
28
29
30
31
|
post_install() {
# Adding all users to the input group
for user in `ls /home`
do
gpasswd -a $user input
done
# Create the link to the binary
ln -sf '/opt/shadowbeta/shadow-wrapper.pl' '/usr/bin/shadow-beta'
}
post_remove() {
# Remove configuration
for user in `ls /home`
do
if [ -d /home/$user/.config/Shadow\ Beta ]; then
rm -R /home/$user/.config/Shadow\ Beta
fi
done
}
pre_upgrade(){
# Delete the old version of Shadow
if [ -d "/opt/Shadow Beta" ]; then
rm -r "/opt/Shadow Beta"
fi
}
post_upgrade(){
post_install
}
|