summarylogtreecommitdiffstats
path: root/keyd.install
blob: ad7ad6875d7f41613b28c0f36c4cb225cc5fc489 (plain)
1
2
3
4
5
6
7
8
9
10
post_install() {
  printf '%s\n' "  -> Adding 'keyd' user group:"
  printf '%s\n' "  You must belong to this group for application specific mappings"
  groupadd -f keyd
}

post_remove() {
  printf '%s\n' "  -> Removing 'keyd' user group ..."
  groupdel keyd 2>/dev/null
}