summarylogtreecommitdiffstats
path: root/ganglia.install
blob: 8478939aabc72f9c1de8df3b9ff4cc546be46b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Arg 1: the new package version
post_install() {

  # Create user and group
  systemd-sysusers ganglia.conf
}

# Arg 1: the old package version
post_remove() {

  id ganglia >& /dev/null && userdel ganglia
}

# vim:set ts=2 sw=2 et: