summarylogtreecommitdiffstats
path: root/eilin.install
blob: c6722399bc9b087567da7a30d9c4b637813852a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
post_install() {
  echo "NOTE: To use eilin as normal user you have to add yourself into \"eilin\" group"
  getent group eilin >> /dev/null || groupadd eilin
}

post_upgrade() {
  post_install
}

post_remove() {
  getent group eilin &>/dev/null && groupdel eilin
}