summarylogtreecommitdiffstats
path: root/sudo-masochist.install
diff options
context:
space:
mode:
Diffstat (limited to 'sudo-masochist.install')
-rw-r--r--sudo-masochist.install26
1 files changed, 26 insertions, 0 deletions
diff --git a/sudo-masochist.install b/sudo-masochist.install
new file mode 100644
index 000000000000..ef941ed7aa9e
--- /dev/null
+++ b/sudo-masochist.install
@@ -0,0 +1,26 @@
+post_install() {
+ if type -P systemd-tmpfiles >/dev/null; then
+ systemd-tmpfiles --create sudo.conf
+ fi
+ printf "#####################################################################################\n"
+ printf "# I hope you weren't dumb enough to disable the root password! #\n"
+ printf "# Your old config is stored at /etc/sudoers.pacsave should you want to restore it. #\n"
+ printf "# Don't forget to add 'Defaults !lecture,tty_tickets,insults' to your sudoers file. #\n"
+ printf "# Type your sudo password wrong and it will make you cry. #\n"
+ printf "# Also, reinstall every now and again im adding insults all the time. #\n"
+ printf "#####################################################################################\n"
+}
+
+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: