Files
extra/yash/yash.install
2025-06-22 20:39:04 -05:00

12 lines
197 B
Plaintext

post_install() {
grep -qe '^/usr/bin/yash$' etc/shells || echo '/usr/bin/yash' >> etc/shells
}
post_upgrade() {
post_install
}
pre_remove() {
sed -i -r '/^(\/usr)?\/bin\/yash$/d' etc/shells
}