File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,19 +121,19 @@ dev-config-linux: dev-stop-linux-named dev-stop-linux-haproxy
121
121
122
122
.PHONY : dev-stop-linux-named
123
123
dev-stop-linux-named :
124
- ifneq(" inactive" ,$( systemctl is-failed named) )
124
+ ifneq(" inactive" ," $( shell systemctl is-failed named) " )
125
125
systemctl stop named
126
126
end
127
127
128
128
.PHONY : dev-stop-linux-haproxy
129
129
dev-stop-linux-haproxy :
130
- ifneq(" inactive" ,$( systemctl is-failed haproxy) )
130
+ ifneq(" inactive" ," $( shell systemctl is-failed haproxy) " )
131
131
systemctl stop haproxy
132
132
end
133
133
134
134
.PHONY : dev-config-linux-resolv
135
135
dev-config-linux-resolv :
136
- ifeq(" " , $( grep 10.0.10.4 /etc/resolv.conf) )
136
+ ifeq(" " , " $( shell grep 10.0.10.4 /etc/resolv.conf) " )
137
137
echo " nameserver 10.0.10.4" >> /etc/resolv.conf
138
138
end
139
139
You can’t perform that action at this time.
0 commit comments