12345678910111213141516171819202122232425262728293031323334353637383940 |
- # Copyright 2019 Pascal Gloor
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
-
- .PHONY: all clean install uninstall
-
- help:
- @echo "make <all|clean|install|uninstall>"
-
- all:
- $(MAKE) -C src all
-
- clean:
- $(MAKE) -C src clean
-
- install:
- systemctl stop dhcp_protect || true
- cp src/dhcp_protect /usr/local/bin/
- cp etc/dhcp_protect.conf /usr/local/etc/
- cp etc/dhcp_protect.service /etc/systemd/system/
- chmod 644 /etc/systemd/system/dhcp_protect.service
- systemctl enable dhcp_protect
- systemctl start dhcp_protect
-
- uninstall:
- systemctl stop dhcp_protect || true
- systemctl disable dhcp_protect || true
- rm -f /usr/local/bin/dhcp_protect
- rm -f /usr/local/etc/dhcp_protect.conf
- rm -f /etc/systemd/system/dhcp_protect.service
|