diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-05-02 16:47:26 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2016-05-02 16:47:26 -0500 |
commit | 7226233fc2675546de5034b6c5b5043a45ca9bf2 (patch) | |
tree | c44d4447acd91e9532b314e1aab5a02aa080ff92 /pcr/trytond/trytond.install | |
parent | 2de6d26bbc444f00a81f4b0d170638a21a6a981b (diff) | |
download | abslibre-7226233fc2675546de5034b6c5b5043a45ca9bf2.tar.gz abslibre-7226233fc2675546de5034b6c5b5043a45ca9bf2.tar.bz2 abslibre-7226233fc2675546de5034b6c5b5043a45ca9bf2.zip |
trytond-3.8.4-1: updating version
Diffstat (limited to 'pcr/trytond/trytond.install')
-rw-r--r-- | pcr/trytond/trytond.install | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pcr/trytond/trytond.install b/pcr/trytond/trytond.install index 46d6daaba..453bcac1d 100644 --- a/pcr/trytond/trytond.install +++ b/pcr/trytond/trytond.install @@ -2,17 +2,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 echo "Note:" - echo "==> Please don't forget to configure your PostgreSQL database for the program." + echo "- Tryton modules can be installed using pip2, e.g. 'pip2 install trytond-party'." + echo "- Configure Tryton using the config file /etc/trytond.conf." + echo "- See the Tryton documentation at http://doc.tryton.org for more information." + echo } post_remove() { - echo "Removing tryton system user... " - userdel tryton && echo "trytond [done]" + echo "Removing tryton user... " + userdel tryton } op=$1 |