updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / trytond / trytond.install
blob5e1a935cd9c4e6b3b89c0f15e1db103ae996f873
1 post_install() {
2   echo
3   echo "Adding trytond group... "
4   groupadd  trytond
5   echo
6   echo "Adding trytond user... "
7   useradd -c "Tryton Server Daemon" -d / -g trytond -s /bin/false trytond
9 # cat << EOM
11 #Note:
12 #==> Please don't forget to configure your PostgreSQL database for the program.
14 #EOM
17 post_remove() {
18   echo "Removing trytond system user... "
19   userdel trytond && echo "trytond [done]"
22 op=$1
23 shift
24 [ "$(type -t "$op")" = "function" ] && $op "$@"