aboutsummarylogtreecommitdiffstats
path: root/INSTALL
blob: 6533cf37c090305d0c29534c22e2f91bf1e32754 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
	# Adding all users to the input group
	for user in `ls /home`
	do
		gpasswd -a $user input
	done
	fi
}

post_remove() {
	# Remove configuration
	for user in `ls /home`
	do
		if [ -d /home/$user/.cache/blade ]; then
			rm -R /home/$user/.cache/blade
		fi

		if [ -d /home/$user/.config/Shadow\ Beta ]; then
			rm -R /home/$user/.config/Shadow\ Beta
		fi
	done
}