Do not hardcode commands path

pull/2/head
Geoffrey Merck 6 years ago
parent 70ae0b9ce5
commit 48ca0732fe

@ -28,17 +28,17 @@ clean:
# install, uninstall and removehostfiles need root priviledges # install, uninstall and removehostfiles need root priviledges
.PHONY: newhostfiles .PHONY: newhostfiles
newhostfiles : newhostfiles :
/bin/mkdir -p $(CFGDIR) mkdir -p $(CFGDIR)
/usr/bin/wget -O $(CFGDIR)/DExtra_Hosts.txt http://www.pistar.uk/downloads/DExtra_Hosts.txt wget -O $(CFGDIR)/DExtra_Hosts.txt http://www.pistar.uk/downloads/DExtra_Hosts.txt
/usr/bin/wget -O $(CFGDIR)/DCS_Hosts.txt http://www.pistar.uk/downloads/DCS_Hosts.txt wget -O $(CFGDIR)/DCS_Hosts.txt http://www.pistar.uk/downloads/DCS_Hosts.txt
.PHONY: install .PHONY: install
install : newhostfiles sgs-xl install : newhostfiles sgs-xl
/bin/mkdir -p $(CFGDIR) mkdir -p $(CFGDIR)
/bin/cp -f sgs-xl.cfg $(CFGDIR) cp -f sgs-xl.cfg $(CFGDIR)
/bin/cp -f sgs-xl $(BINDIR) cp -f sgs-xl $(BINDIR)
/bin/cp -f sgs-xl.service /lib/systemd/system cp -f sgs-xl.service /lib/systemd/system
/usr/bin/sed -i "s|REPLACEME|/usr/sbin/sgs-xl /etc/sgs-xl/sgs-xl.cfg|g" /lib/systemd/system/sgs-xl.service sed -i "s|REPLACEME|/usr/sbin/sgs-xl /etc/sgs-xl/sgs-xl.cfg|g" /lib/systemd/system/sgs-xl.service
systemctl enable sgs-xl.service systemctl enable sgs-xl.service
systemctl daemon-reload systemctl daemon-reload
systemctl start sgs-xl.service systemctl start sgs-xl.service
@ -47,15 +47,15 @@ install : newhostfiles sgs-xl
uninstall : uninstall :
systemctl stop sgs-xl.service systemctl stop sgs-xl.service
systemctl disable sgs-xl.service systemctl disable sgs-xl.service
/bin/rm -f /lib/systemd/system/sgs-xl.service rm -f /lib/systemd/system/sgs-xl.service
systemctl daemon-reload systemctl daemon-reload
/bin/rm -f $(BINDIR)/sgs-xl rm -f $(BINDIR)/sgs-xl
/bin/rm -rf $(CFGDIR) rm -rf $(CFGDIR)
.PHONY: removehostfiles .PHONY: removehostfiles
removehostfiles : removehostfiles :
/bin/rm -f $(CFGDIR)/DExtra_Hosts.txt rm -f $(CFGDIR)/DExtra_Hosts.txt
/bin/rm -f $(CFGDIR)/DCS_Hosts.txt rm -f $(CFGDIR)/DCS_Hosts.txt
.PHONY: GitVersion.h .PHONY: GitVersion.h
GitVersion.h: force GitVersion.h: force

Loading…
Cancel
Save

Powered by TurnKey Linux.