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

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

post_upgrade() {
	post_install
}

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