8f80ce34f1
-the live stream is now a part of the camera's main page. -fixed symm links for the main page not being created on install. -removed deprecated ffmpeg timeout option. -copied hls.js as a local file so live streams will still work without being connected to the internet.
66 lines
1.4 KiB
Bash
66 lines
1.4 KiB
Bash
#!/bin/sh
|
|
if [ -f "/opt/mow/uninst" ]; then
|
|
mow -u -f
|
|
fi
|
|
|
|
if [ ! -d "/opt/mow" ]; then
|
|
mkdir /opt/mow
|
|
fi
|
|
|
|
if [ ! -d "/var/opt/mow" ]; then
|
|
mkdir /var/opt/mow
|
|
fi
|
|
|
|
if [ ! -d "/etc/mow" ]; then
|
|
mkdir /etc/mow
|
|
fi
|
|
|
|
if [ ! -d "/var/opt/mow/buf" ]; then
|
|
mkdir /var/opt/mow/buf
|
|
fi
|
|
|
|
if [ ! -d "/var/opt/mow/web" ]; then
|
|
mkdir /var/opt/mow/web
|
|
fi
|
|
|
|
if [ -e "/var/opt/mow/web/index.html" ]; then
|
|
rm -v /var/opt/mow/web/index.html
|
|
fi
|
|
|
|
if [ -e "/var/opt/mow/web/theme.css" ]; then
|
|
rm -v /var/opt/mow/web/theme.css
|
|
fi
|
|
|
|
touch /var/opt/mow/buf/index.html
|
|
touch /var/opt/mow/buf/theme.css
|
|
|
|
ln -sv /var/opt/mow/buf/index.html /var/opt/mow/web/index.html
|
|
ln -sv /var/opt/mow/buf/theme.css /var/opt/mow/web/theme.css
|
|
|
|
cp -v ./.build-mow/mow /opt/mow/bin
|
|
cp -v ./bin/hls.js /var/opt/mow/web/hls.js
|
|
|
|
echo "writing /opt/mow/run"
|
|
printf "#!/bin/sh\n" > /opt/mow/run
|
|
printf "/opt/mow/bin \$1 \$2 \$3\n" >> /opt/mow/run
|
|
|
|
echo "writing /opt/mow/uninst"
|
|
printf "#!/bin/sh\n" > /opt/mow/uninst
|
|
printf "rm -v /opt/mow/bin\n" >> /opt/mow/uninst
|
|
printf "rm -v /opt/mow/run\n" >> /opt/mow/uninst
|
|
printf "rm -v /opt/mow/uninst\n" >> /opt/mow/uninst
|
|
printf "rm -v /usr/bin/mow\n" >> /opt/mow/uninst
|
|
printf "rm -rv /opt/mow\n" >> /opt/mow/uninst
|
|
printf "rm -r /var/opt/mow/buf\n" >> /opt/mow/uninst
|
|
printf "deluser mow\n" >> /opt/mow/uninst
|
|
|
|
useradd -r mow
|
|
|
|
chown -R mow:mow /var/opt/mow
|
|
|
|
chmod -v +x /opt/mow/run
|
|
chmod -v +x /opt/mow/bin
|
|
chmod -v +x /opt/mow/uninst
|
|
|
|
ln -sv /opt/mow/run /usr/bin/mow
|