blob: a2aafa252674ccd5abc743313aa7a775e9e1fdd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
grep -q '/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
}
|