File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,30 @@ dev-teardown:
113
113
dev-cache/kind delete cluster \
114
114
--name $(KIND_CLUSTER_NAME )
115
115
116
+ # #######################################################################
117
+ # Configuration for IBM Development only
118
+
119
+ .PHONY : dev-config-linux
120
+ dev-config-linux : dev-stop-linux-named dev-stop-linux-haproxy
121
+
122
+ .PHONY : dev-stop-linux-named
123
+ dev-stop-linux-named :
124
+ ifneq(" inactive" ,$( systemctl is-failed named) )
125
+ systemctl stop named
126
+ end
127
+
128
+ .PHONY : dev-stop-linux-haproxy
129
+ dev-stop-linux-haproxy :
130
+ ifneq(" inactive" ,$( systemctl is-failed haproxy) )
131
+ systemctl stop haproxy
132
+ end
133
+
134
+ .PHONY : dev-config-linux-resolv
135
+ dev-config-linux-resolv :
136
+ ifeq(" " , $( grep 10.0.10.4 /etc/resolv.conf) )
137
+ echo " nameserver 10.0.10.4" >> /etc/resolv.conf
138
+ end
139
+
116
140
# #######################################################################
117
141
# Container Targets
118
142
You can’t perform that action at this time.
0 commit comments