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

post_upgrade() {
  post_install
}

pre_remove() {
  sed -ri '\|^/usr/bin/es$|d' /etc/shells
}