post_install() {
  usr/bin/grep -q '/usr/bin/dash' etc/shells || echo '/usr/bin/dash' >> etc/shells
}

post_upgrade() {
  post_install
}

pre_remove() {
  usr/bin/sed -i '/^\/usr\/bin\/dash/d' etc/shells
}
