summarylogtreecommitdiffstats
path: root/gsh-bin.install
blob: 3e845892f7f5013e1c87faea325303531be86695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

post_install() {
	grep -qe '^/bin/gsh$' etc/shells || echo '/bin/gsh' >> etc/shells
	grep -qe '^/usr/bin/gsh$' etc/shells || echo '/usr/bin/gsh' >> etc/shells
}

post_upgrade() {
	post_install
}

pre_remove() {
	sed -i -r '/^(\/usr)?\/bin\/gsh$/d' etc/shells
}