]> git.ipfire.org Git - people/ms/network.git/blob - src/functions/functions.service
hostapd: Enable WMM by default.
[people/ms/network.git] / src / functions / functions.service
1 #!/bin/bash
2 ###############################################################################
3 # #
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2010 Michael Tremer & Christian Schmidt #
6 # #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
11 # #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
16 # #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
19 # #
20 ###############################################################################
21
22 function service_start() {
23 local name=${1}
24 assert isset name
25
26 systemctl start ${name}
27
28 # Check, if the service was successfully started and
29 # return a proper exit code.
30 service_is_active ${name}
31 local ret=$?
32
33 log INFO "Started service '${name}', code=${ret}."
34
35 return ${ret}
36 }
37
38 function service_stop() {
39 local name=${1}
40 assert isset name
41
42 systemctl stop ${name}
43 }
44
45 function service_restart() {
46 local name=${1}
47 assert isset name
48
49 systemctl restart ${name}
50 }
51
52 function service_reload() {
53 local name=${1}
54 assert isset name
55
56 if service_status ${name}; then
57 systemctl reload ${name}
58 return $?
59 else
60 log WARNING "Cannot reload service '${name}' which is currently not running."
61 fi
62 }
63
64 function service_status() {
65 local name=${1}
66 assert isset name
67
68 systemctl status ${name} >/dev/null 2>&1
69 return $?
70 }
71
72 # This function calls the "enable" command from systemd,
73 # to mark services to be automatically started during
74 # boot up.
75 function service_enable() {
76 local name=${1}
77 assert isset name
78
79 systemctl enable "${name}" >/dev/null 2>&1
80 }
81
82 # This function calls the "disable" command of systemd,
83 # to drop the autostart ability of the service during the
84 # boot up.
85 function service_disable() {
86 local name=${1}
87 assert isset name
88
89 systemctl disable "${name}" >/dev/null 2>&1
90 }
91
92 # This function uses the systemd command "is-enabled" to check,
93 # if a service has been enabled or not.
94 function service_is_enabled() {
95 local name="${1}"
96 assert isset name
97
98 systemctl is-enabled "${name}" >/dev/null 2>&1
99 return $?
100 }
101
102 function service_is_active() {
103 local name=${1}
104 assert isset name
105
106 systemctl is-active ${name}.service >/dev/null 2>&1
107 return $?
108 }
109
110 function service_get_exitcode() {
111 local name=${1}
112 assert isset name
113
114 local output=$(systemctl show ${name} --property="ExecMainStatus")
115 cli_get_val "${output}"
116 }