File: preremove.sh

package info (click to toggle)
openvpn-auth-oauth2 1.27.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,212 kB
  • sloc: ansic: 172; makefile: 72; sh: 53; javascript: 10
file content (26 lines) | stat: -rwxr-xr-x 860 bytes parent folder | download
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
#!/bin/sh

set -e

case $1 in
1 | upgrade | failed-upgrade)
  # RPM: If the first argument is 1, it means the package is being upgraded. https://docs.fedoraproject.org/en-US/packaging-guidelines/Scriptlets/#_syntax
  # DEB: If the first argument is upgrade or failed-upgrade, it means the package is being upgraded. https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#summary-of-ways-maintainer-scripts-are-called
  ;;

*)
  if command -v apparmor_parser >/dev/null 2>&1 && command -v aa-enabled >/dev/null 2>&1; then
    if aa-enabled --quiet 2>/dev/null; then
      apparmor_parser --remove -T -W /etc/apparmor.d/usr.bin.openvpn-auth-oauth2 || true
    fi
  fi

  if ! command -v systemctl >/dev/null 2>&1; then
    exit 0
  fi

  systemctl stop openvpn-auth-oauth2.service || true
  systemctl daemon-reload
  systemctl reset-failed
  ;;
esac