summarylogtreecommitdiffstats
path: root/ivpn.install
blob: ceef267168398e691f1915e84cea58fd702d7156 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env bash

post_upgrade () {
  echo "Restarting ivpn-service.service..."
  systemctl restart ivpn-service.service
}

post_install () {
  echo "Enabling ivpn-service.service..."
  systemctl enable --now ivpn-service.service
}