summarylogtreecommitdiffstats
path: root/snapd.install
blob: fd43f4f25caf0bc506e456c998e724aff46a2d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## arg 1:  the new package version
post_install() {
  echo
  echo 'To use snapd start/enable the snapd.socket'
  echo
  echo 'If you want your apps to be automatically updated'
  echo 'from the store start/enable the snapd.refresh.timer'
  echo
  echo 'NOTE: Desktop entries show up after logging in again'
  echo ' or rebooting after snapd installation'
  echo
  echo 'For more informations, see https://wiki.archlinux.org/index.php/Snapd'
}

_stop_services() {
  /usr/bin/systemctl stop \
                     snapd.service \
                     snapd.socket \
                     snapd.refresh.timer \
                     snapd.refresh.service > /dev/null 2>&1
}

pre_remove() {
  _stop_services
}

pre_upgrade() {
  _stop_services
}

post_upgrade() {
  /usr/bin/systemctl daemon-reload > /dev/null 2>&1 || :

  # restore the services after an upgrade
  if /usr/bin/systemctl -q is-enabled snapd.socket > /dev/null 2>&1; then
    /usr/bin/systemctl start snapd.socket > /dev/null 2>&1 || :
  fi
  if systemctl -q is-enabled snapd.refresh.timer > /dev/null 2>&1; then
    systemctl start snapd.refresh.timer > /dev/null 2>&1 || :
  fi
}

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