summaryrefslogtreecommitdiff
path: root/pcr/trytond/trytond.install
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2013-02-12 23:24:03 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2013-02-12 23:24:03 -0500
commitb03a7f3a39c200dd7a3879e2cfc6fa3c9664ca72 (patch)
treecb5bcfe47421c5bcc604a35fb1e94c2dfc147e9f /pcr/trytond/trytond.install
parent30275df2071b48ef4c3d1a23039b4136c2359771 (diff)
Adding python2-polib, python2-relatorio and trytond
Diffstat (limited to 'pcr/trytond/trytond.install')
-rw-r--r--pcr/trytond/trytond.install20
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/trytond/trytond.install b/pcr/trytond/trytond.install
new file mode 100644
index 000000000..46d6daaba
--- /dev/null
+++ b/pcr/trytond/trytond.install
@@ -0,0 +1,20 @@
+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 "$@"