summarylogtreecommitdiffstats
path: root/asciisec.install
blob: 04714ec4ab3293199257cf67c7a81e9a05440e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {
  grpfiles=("/usr/share/asciisec/log.txt" "/usr/share/asciisec/data/options.txt")
  touch ${grpfiles[@]}
  chgrp games ${grpfiles[@]}
  chmod 664 ${grpfiles[@]}

  echo "Add user to group games to make the game playable. Please note that this application is not multiuser friendly."
  /bin/true
}

post_upgrade() {
/bin/true
}

pre_remove() {
/bin/true
}

op=$1
shift

$op "$@"