summaryrefslogtreecommitdiff
path: root/social/trytond/trytond.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-02-13 22:39:07 -0200
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-02-13 22:39:07 -0200
commit7e67cfd42b5e333fe2bb3086e2ad490129437176 (patch)
treec7d5f7bd4400c5036f555cbeba9f270edd2f62f6 /social/trytond/trytond.install
parent0dfd5c7b96811934d690ef3084820e7abfc5e879 (diff)
downloadabslibre-7e67cfd42b5e333fe2bb3086e2ad490129437176.tar.gz
abslibre-7e67cfd42b5e333fe2bb3086e2ad490129437176.tar.bz2
abslibre-7e67cfd42b5e333fe2bb3086e2ad490129437176.zip
gnuhealth-1.8.0-1: updating version and dependencies
Diffstat (limited to 'social/trytond/trytond.install')
-rw-r--r--social/trytond/trytond.install20
1 files changed, 0 insertions, 20 deletions
diff --git a/social/trytond/trytond.install b/social/trytond/trytond.install
deleted file mode 100644
index 46d6daaba..000000000
--- a/social/trytond/trytond.install
+++ /dev/null
@@ -1,20 +0,0 @@
-post_install() {
- echo
- echo "Adding tryton group... "
- groupadd tryton
- echo
- echo "Adding tryton user... "
- useradd -c "Tryton Server Daemon" -g tryton -s /bin/false tryton
-
- echo "Note:"
- echo "==> Please don't forget to configure your PostgreSQL database for the program."
-}
-
-post_remove() {
- echo "Removing tryton system user... "
- userdel tryton && echo "trytond [done]"
-}
-
-op=$1
-shift
-[ "$(type -t "$op")" = "function" ] && $op "$@"