summarylogtreecommitdiffstats
path: root/.INSTALL
diff options
context:
space:
mode:
authordramm2018-08-28 15:38:32 -0300
committerdramm2018-08-28 15:38:32 -0300
commit261519898136286663f34768ab7e7b42dbb37f05 (patch)
treeff243015ece9f1d3f40353048557a305126fe555 /.INSTALL
parentb947b8eac38c9782ff5994251ec3b73bfaa413c4 (diff)
downloadaur-261519898136286663f34768ab7e7b42dbb37f05.tar.gz
updated to v.3.88.0
Diffstat (limited to '.INSTALL')
-rw-r--r--.INSTALL12
1 files changed, 12 insertions, 0 deletions
diff --git a/.INSTALL b/.INSTALL
new file mode 100644
index 000000000000..2ec4029c97e6
--- /dev/null
+++ b/.INSTALL
@@ -0,0 +1,12 @@
+pre_install() {
+ if ! grep -q "^torguard:" /etc/group ; then groupadd --system torguard; fi
+}
+
+pre_upgrade() {
+ if ! grep -q "^torguard:" /etc/group ; then groupadd --system torguard; fi
+}
+
+post_remove() {
+ if grep -q "^torguard:" /etc/group ; then groupdel torguard; fi
+}
+