blob: 7a21a63fdc009eec730fb8725cf892476852e9d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
apk -U upgrade
nginx_pid="$(pgrep nginx:\ master\ process)"
if [ -z "$nginx_pid" ]
then
rc-service nginx restart
exit 0
fi
nginx_proc_start_time="$(stat -Lc %Y /proc/${nginx_pid})"
nginx_file_mtime="$(stat -Lc %Y $(which nginx))"
if [ "$nginx_file_mtime" -gt "$nginx_proc_start_time" ]
then
rc-service nginx restart
fi
|