blob: b41447c38f87ae79808212f35d88a818af0bb09e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
|