summarylogtreecommitdiffstats
path: root/ds360go.install
blob: 6f9302897063b1f3526f6ff228f4f42f7b3c284c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
post_install() {
  for u in $(w -h | awk '{if (!seen[$1]++) print $1}'); do
    systemctl -M "$u@" --user daemon-reload
  done
  udevadm control --reload
}

post_upgrade() {
  post_install "$1"
}

post_remove() {
  post_install "$1"
}