summaryrefslogtreecommitdiffstats
path: root/abs/core/sudo/sudo.install
diff options
context:
space:
mode:
authorBritney Fransen <brfransen@gmail.com>2015-09-21 13:54:18 (GMT)
committerBritney Fransen <brfransen@gmail.com>2015-09-21 13:54:18 (GMT)
commitdddc77b44edb6db476b6e2cda1dda4fa5827bd93 (patch)
treeb87d50151bc63c22bc62c6f12f93d8bc28cc6222 /abs/core/sudo/sudo.install
parenta539e75c078ac28e99b25b257a0700caaae60770 (diff)
downloadlinhes_pkgbuild-dddc77b44edb6db476b6e2cda1dda4fa5827bd93.zip
linhes_pkgbuild-dddc77b44edb6db476b6e2cda1dda4fa5827bd93.tar.gz
linhes_pkgbuild-dddc77b44edb6db476b6e2cda1dda4fa5827bd93.tar.bz2
sudo: update to 1.8.14.p3
Diffstat (limited to 'abs/core/sudo/sudo.install')
-rw-r--r--abs/core/sudo/sudo.install19
1 files changed, 19 insertions, 0 deletions
diff --git a/abs/core/sudo/sudo.install b/abs/core/sudo/sudo.install
new file mode 100644
index 0000000..1369cc1
--- /dev/null
+++ b/abs/core/sudo/sudo.install
@@ -0,0 +1,19 @@
+post_install() {
+ if type -P systemd-tmpfiles >/dev/null; then
+ systemd-tmpfiles --create sudo.conf
+ fi
+}
+
+pre_upgrade() {
+ # Permissions of /var/db/sudo were changed from 0700 to 0711 in sudo 1.8.10
+ # http://www.sudo.ws/repos/sudo/rev/5c38d77a2d0c
+ if (($(vercmp $2 1.8.10-1) < 0)); then
+ chmod 0711 var/db/sudo
+ fi
+}
+
+post_upgrade() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et: