diff options
author | startxfr <clarue@startx.fr> | 2014-12-08 02:35:03 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-12-08 02:35:03 +0100 |
commit | ef2c1df934ee7720fd1ccacae042f3deb3b7628d (patch) | |
tree | 005eb1b5402f274f8643fa2d85ffa81da917a225 /Services/ooconv/sx | |
parent | a7f649b8f1f56a999073550d1b91b5d8d1cd7d81 (diff) | |
download | phpmyadmin-ef2c1df934ee7720fd1ccacae042f3deb3b7628d.tar.gz phpmyadmin-ef2c1df934ee7720fd1ccacae042f3deb3b7628d.tar.bz2 phpmyadmin-ef2c1df934ee7720fd1ccacae042f3deb3b7628d.tar.xz phpmyadmin-ef2c1df934ee7720fd1ccacae042f3deb3b7628d.zip |
adding function and startup script for last services images : memcache, nodejs, ooconv and postresql
Diffstat (limited to 'Services/ooconv/sx')
-rw-r--r-- | Services/ooconv/sx/ooconv.sh | 40 | ||||
-rw-r--r-- | Services/ooconv/sx/ooconv_run.sh | 7 |
2 files changed, 47 insertions, 0 deletions
diff --git a/Services/ooconv/sx/ooconv.sh b/Services/ooconv/sx/ooconv.sh new file mode 100644 index 0000000..b41447c --- /dev/null +++ b/Services/ooconv/sx/ooconv.sh @@ -0,0 +1,40 @@ +#!/bin/bash +export TERM=dumb + +# Begin configuration before starting daemonized process +# and start generating host keys +function begin_config { + echo "=> Begin ooconv configuration for host $HOSTNAME" +} + +# End configuration process just before starting daemon +function end_config { + echo "=> End ooconv configuration ..." +} + +# Start the ooconv server in background. Used to perform config +# against the database structure such as user creation +function start_server { + echo "===> Starting ooconv server ..." + unoconv --listener & + sleep 4 +} + +# Stop the ooconv server running in background. +function stop_server { + echo "===> Stopping ooconv server ..." + killall unoconv + killall soffice.bin +} + +# Start the ooconv server as a deamon and execute it inside +# the running shell +function start_daemon { + echo "=> Starting ooconv daemon ..." + exec unoconv --listener +} + + +if [[ "$0" == *"ooconv.sh" && ! $1 = "" ]];then + eval "$@"; +fi
\ No newline at end of file diff --git a/Services/ooconv/sx/ooconv_run.sh b/Services/ooconv/sx/ooconv_run.sh new file mode 100644 index 0000000..fadc29c --- /dev/null +++ b/Services/ooconv/sx/ooconv_run.sh @@ -0,0 +1,7 @@ +#!/bin/bash +source /sx/ooconv.sh + +begin_config +end_config + +start_daemon
\ No newline at end of file |