summarylogtreecommitdiffstats
path: root/haxm-git.install
blob: 03bbeddfb20131f37be1b78256a70c323deb85e0 (plain)
1
2
3
4
5
6
7
8
9
post_install() {
  groupadd -f haxm
}

pre_remove() {
  if [ $(getent group haxm) ]; then
    groupdel haxm
  fi
}