forked from JedimasterRDW/proxmox_motioneye_container
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
70 lines (58 loc) · 1.88 KB
/
setup.sh
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env bash
set -Eeuo pipefail
shopt -s expand_aliases
alias die='EXIT=$? LINE=$LINENO error_exit'
trap die ERR
function error_exit() {
trap - ERR
local DEFAULT='Unknown failure occured.'
local REASON="\e[97m${1:-$DEFAULT}\e[39m"
local FLAG="\e[91m[ERROR:LXC] \e[93m$EXIT@$LINE"
msg "$FLAG $REASON"
exit $EXIT
}
function msg() {
local TEXT="$1"
echo -e "$TEXT"
}
# Prepare container OS
msg "Setting up container OS..."
sed -i "/$LANG/ s/\(^# \)//" /etc/locale.gen
locale-gen >/dev/null
apt-get -y purge openssh-{client,server} >/dev/null
apt-get autoremove >/dev/null
# Update container OS
msg "Updating container OS..."
apt-get update >/dev/null
apt-get -qqy upgrade &>/dev/null
# Install prerequisites
# Install motion ffmpeg v4l-utils
msg "Installing necessary components..."
apt-get -y install motion ffmpeg v4l-utils &>/dev/null
# Update
apt-get update &>/dev/null
# Install the dependencies
msg "Installing dependencies..."
apt-get -y install python-pip python-dev python-setuptools curl libssl-dev libcurl4-openssl-dev libjpeg-dev libz-dev &>/dev/null
# Add /usr/local/bin to PATH
export PATH=$PATH:/usr/local/bin
# Install MotionEye
msg "Installing MotionEye..."
# yes 2>/dev/null |
pip install motioneye &>/dev/null
# Prepare the configuration
msg "Prepare the configuration..."
mkdir -p /etc/motioneye
cp /usr/local/share/motioneye/extra/motioneye.conf.sample /etc/motioneye/motioneye.conf
# Prepare the media directory
msg "Prepare the media directory..."
mkdir -p /var/lib/motioneye
# configure run at startup and start the motionEye server
msg "Prepare run at startup and start the motionEye server..."
cp /usr/local/share/motioneye/extra/motioneye.systemd-unit-local /etc/systemd/system/motioneye.service
systemctl daemon-reload
systemctl enable motioneye
systemctl start motioneye
# Cleanup container
msg "Cleanup..."
rm -rf /setup.sh /var/{cache,log}/* /var/lib/apt/lists/*