-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathentrypoint_AMD64.sh
175 lines (147 loc) · 4.66 KB
/
entrypoint_AMD64.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#!/usr/bin/env bash
trap stop SIGTERM SIGINT SIGQUIT SIGHUP ERR
start(){
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
dpkg-reconfigure --frontend noninteractive tzdata
#install from package
echo "Check ZoneMinder version"
RESULT=$(dpkg -l | grep '^ii' | grep zoneminder |grep 1.36.35)
if [ "$RESULT" == "" ]; then
echo "Installing new version"
dpkg -i /zoneminder_1.36.35~20241030.27-bullseye_amd64.deb
a2enmod ssl \
&& a2enmod rewrite \
&& a2enmod headers \
&& a2enmod expires \
&& a2enconf zoneminder \
&& a2ensite default-ssl.conf
else
echo "Already up to date"
fi
echo "Configuring MariaDBPath"
if [ ! -d /config/mysql ]; then
mkdir -p /config/mysql
rsync -a -v -q --ignore-existing /var/lib/mysql/ /config/mysql/
echo "MariaDBPath configuration done"
else
echo "MariaDBPath already configured"
fi
sed -i -e 's,/var/lib/mysql,/config/mysql,g' /etc/mysql/mariadb.conf.d/50-server.cnf
echo 'innodb_file_per_table = ON' >> /etc/mysql/mariadb.conf.d/50-server.cnf
echo 'innodb_buffer_pool_size = 256M' >> /etc/mysql/mariadb.conf.d/50-server.cnf
echo 'innodb_log_file_size = 32M' >> /etc/mysql/mariadb.conf.d/50-server.cnf
echo "Check MariaDB config"
/etc/init.d/mariadb start
while ! mysqladmin ping --silent; do
echo "Waiting mysql startup..."
sleep 3
done
RESULT=$(mysqlshow --user=zmuser --password=zmpass zm| grep -v Wildcard | grep -o Tables)
if [ "$RESULT" != "Tables" ]; then
#configure mysql
echo "USE mysql;" > timezones.sql && mysql_tzinfo_to_sql /usr/share/zoneinfo >> timezones.sql
mysql -u root < timezones.sql
rm timezones.sql
mysql -u root < /usr/share/zoneminder/db/zm_create.sql
mysql -u root -e "grant all on zm.* to 'zmuser'@localhost identified by 'zmpass';"
mysqladmin -u root reload
#secure mysql
secret=$(openssl rand -base64 14)
mysql_secure_installation <<EOF
y
$secret
$secret
y
y
y
y
EOF
/etc/init.d/mariadb restart
while ! mysqladmin ping --silent; do
echo "Waiting mysql restart"
sleep 3
done
echo "MariaDB configuration done"
else
echo "MariaDB already configured"
fi
#echo "Checking Timezones"
#RESULT=$(cat /etc/mysql/my.cnf| grep default-time-zone)
#if [ "$RESULT" != "default-time-zone=$(cat /etc/timezone)" ]; then
# echo "Set Mysql timezone"
# printf "[mysqld]\n default-time-zone=$(cat /etc/timezone)" >> /etc/mysql/my.cnf
# /etc/init.d/mysql restart
# while ! mysqladmin ping --silent; do
# echo "Waiting mysql restart..."
# sleep 3
# done
#fi
RESULT=$(cat /etc/php/*/apache2/php.ini| grep "date.timezone =")
if [ "$RESULT" = ";date.timezone =" ]; then
echo "Set Php timezone"
printf "date.timezone = $(cat /etc/timezone)" >> /etc/php/*/apache2/php.ini
fi
echo "Checking MSMTP configuration"
if [ ! -f /config/msmtprc ]; then
printf "defaults
auth on
tls on
tls_trust_file /etc/ssl/certs/ca-certificates.crt
logfile ~/.msmtp.log
account gmail
host smtp.gmail.com
port 587
from username@gmail.com
user username
password password
account default : gmail
" > /config/msmtprc
fi
if [ ! -f /etc/msmtprc ]; then
ln -s /config/msmtprc /etc/msmtprc
fi
if [ "$SELFSIGNED" = "0" ]; then
echo "Linking to SWAG"
sed -i -e 's,/etc/ssl/certs/ssl-cert-snakeoil.pem,/sslcert/live/'$FQDN'/cert.pem,g' /etc/apache2/sites-available/default-ssl.conf
sed -i -e 's,/etc/ssl/private/ssl-cert-snakeoil.key,/sslcert/live/'$FQDN'/privkey.pem,g' /etc/apache2/sites-available/default-ssl.conf
fi
RESULT=$(cat /etc/apache2/apache2.conf| grep ServerName)
if [ "$RESULT" = "" ]; then
echo "Set ServerName"
echo "ServerName "$FQDN >> /etc/apache2/apache2.conf
fi
echo "Setting /var/cache subfolders"
mkdir -p /var/cache/zoneminder/cache && chown www-data:www-data /var/cache/zoneminder/cache
mkdir -p /var/cache/zoneminder/events && chown www-data:www-data /var/cache/zoneminder/events
mkdir -p /var/cache/zoneminder/images && chown www-data:www-data /var/cache/zoneminder/images
mkdir -p /var/cache/zoneminder/temp && chown www-data:www-data /var/cache/zoneminder/temp
echo "Starting"
#start
/etc/init.d/apache2 start
/usr/bin/zmpkg.pl start
RESULT=$(tail -n2 /var/log/zm/zmpkg.log |grep "Version mismatch")
if [ "$RESULT" != "" ]; then
echo "WARNING: DB version mismatch found!"
echo "auto align.."
/usr/bin/zmpkg.pl stop
/usr/bin/zmupdate.pl -nointeractive
/usr/bin/zmupdate.pl -f
/usr/bin/zmpkg.pl start
echo "done"
fi
mysql -e "update zm.Config set Value = '$TZ' where Name = 'ZM_TIMEZONE';"
tail -f /var/log/apache2/error.log & wait ${!}
}
stop(){
echo "Shutdown requested"
kill ${!};
echo "Stopping apache"
/etc/init.d/apache2 stop
echo "Stopping zoneminder"
/usr/bin/zmpkg.pl stop
echo "Stopping mariadb"
/etc/init.d/mariadb stop
echo "Shutdown completed"
exit
}
start