diff options
author | Ken Roberts <alisonken1@juno.com> | 2014-04-12 15:45:56 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-12 15:45:56 +0700 |
commit | 7338622eabd0aceb08825d3a70cd3ca2cd649e87 (patch) | |
tree | b78edb58865e2b9dc1e5bef15eee042b1568004a /business/trytond/doinst.sh | |
parent | 09d7ae6e029fa66f3d27223f23659812a7f0dbc8 (diff) | |
download | slackbuilds-7338622eabd0aceb08825d3a70cd3ca2cd649e87.tar.gz |
business/trytond: Added (ERP -server part).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'business/trytond/doinst.sh')
-rw-r--r-- | business/trytond/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/business/trytond/doinst.sh b/business/trytond/doinst.sh new file mode 100644 index 0000000000..b158529247 --- /dev/null +++ b/business/trytond/doinst.sh @@ -0,0 +1,22 @@ +config() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then + # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +# Keep same perms on rc.openerp-server.new: +if [ -e etc/rc.d/rc.trytond ]; then + cp -a etc/rc.d/rc.trytond etc/rc.d/rc.trytond.new.incoming + cat etc/rc.d/rc.trytond.new > etc/rc.d/rc.trytond.new.incoming + mv etc/rc.d/rc.trytond.new.incoming etc/rc.d/rc.trytond.new +fi + +config etc/rc.d/rc.trytond.new +config etc/trytond/trytond.conf.new |