summarylogtreecommitdiffstats
path: root/zsh.install
blob: c9bd5b6633eabfae5c53eae42aee06583c089c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
	grep -qe '^/bin/zsh$' etc/shells || echo '/bin/zsh' >> etc/shells
	grep -qe '^/usr/bin/zsh$' etc/shells || echo '/usr/bin/zsh' >> etc/shells
}

post_upgrade() {
	post_install
}

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