blob: d3db4ffd649dd0ef2a66fa748499c39d2d8781e9 (
plain)
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
|
#!/sbin/openrc-run
extra_started_commands="loadconfig saveconfig"
description="NGINX Unit"
description_loadconfig="Load saved configuration"
description_saveconfig="Save configuration to file"
: ${control_socket:="unix:/run/control.unit.sock"}
: ${logfile:="/var/log/unit.log"}
: ${statedir:="/var/lib/unit"}
: ${config_file:="/etc/unit/unit.conf"}
: ${config_load_on_start:="no"}
: ${config_save_on_stop:="no"}
command="/usr/sbin/unitd"
command_args="
--no-daemon
--log $logfile
--control $control_socket
$command_args"
command_background="yes"
pidfile="/run/$RC_SVCNAME.pid"
depend() {
need net
use dns logger netmount
}
start_post() {
if yesno "$config_load_on_start" && [ -f "$config_file" ]; then
check_control_socket || return 1
ewaitfile 5 "${control_socket#unix:}" || return 1
loadconfig || return 1
fi
}
stop_pre() {
if yesno "$config_save_on_stop"; then
saveconfig
fi
}
saveconfig() {
ebegin "Saving configuration to $config_file"
check_control_socket || return 1
checkpath -d "${config_file%/*}" || return 1
local tmpfile=$(mktemp)
curl -sS --unix-socket "${control_socket#unix:}" localhost > "$tmpfile" || {
rm -f "$tmpfile"
eend 1 "Could not retrieve configuration"
return 1
}
cat "$tmpfile" > "$config_file" && rm -f "$tmpfile"
eend $?
}
loadconfig() {
ebegin "Loading configuration from $config_file"
check_control_socket || return 1
if ! [ -f "$config_file" ]; then
eend 1 "File $config_file does not exist"
return 1
fi
local resp=$(curl -sS -X PUT --data-binary "@$config_file" \
--write-out "\nHTTP_CODE:%{http_code}\n" \
--unix-socket "${control_socket#unix:}" localhost)
if [ "$(echo "$resp" | sed -n 's/^HTTP_CODE:\(\d\).*/\1/p')" -ne 2 ]; then
eend 1 "Unable to load configuration"
echo "$resp" | sed '/^HTTP_CODE:/d' >&2
return 1
fi
eend 0
}
check_control_socket() {
case "$control_socket" in
unix:*) return 0;;
esac
eerror "control_socket must be a unix socket when using saveconfig or loadconfig"
return 1
}
|