25 lines
636 B
Bash
Executable file
25 lines
636 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ ! -f /data/mumo.ini ]
|
|
then
|
|
cp /mumo/mumo.ini /data
|
|
|
|
sed -i 's/mumo.log/\/dev\/null/' /data/mumo.ini
|
|
sed -i 's/mumo.pid/\/tmp\/mumo.pid/' /data/mumo.ini
|
|
sed -i 's/modules-enabled\//\/data\/modules-enabled\//' /data/mumo.ini
|
|
|
|
chmod a+rw /data/mumo.ini
|
|
cp -r /mumo/modules-available /data
|
|
mkdir -p /data/modules-enabled
|
|
fi
|
|
|
|
# Mumo apparently refuses to read config from mounted dirs,
|
|
# so we copy them ...
|
|
cp -r /data/mumo.ini /mumo
|
|
cp -r /data/modules-available /mumo
|
|
cp -r /data/modules-enabled /mumo
|
|
|
|
# make sure the data dir is writable
|
|
chown mumo:mumo /data -R
|
|
|
|
exec su mumo -c "python3 /mumo/mumo.py"
|