mscs/Makefile

43 lines
1.0 KiB
Makefile
Raw Normal View History

2015-03-03 19:38:46 -07:00
MSCS_USER := minecraft
MSCS_HOME := /opt/mscs
2015-08-11 09:46:21 -07:00
MSCTL := /usr/local/bin/msctl
MSCS := /usr/local/bin/mscs
MSCS_INIT_D := /etc/init.d/mscs
MSCS_SERVICE := /etc/systemd/system/mscs.service
MSCS_COMPLETION := /etc/bash_completion.d/mscs
2013-12-02 20:39:12 -07:00
2016-06-19 13:06:40 -07:00
UPDATE_D := $(wildcard update.d/*)
.PHONY: install update clean
2013-12-02 20:39:12 -07:00
install: update
useradd --system --user-group --create-home -K UMASK=0022 --home $(MSCS_HOME) $(MSCS_USER)
if which systemctl; then \
systemctl -f enable mscs.service; \
else \
ln -s $(MSCS) $(MSCS_INIT_D); \
update-rc.d mscs defaults; \
fi
2013-12-02 20:39:12 -07:00
update:
install -m 0755 msctl $(MSCTL)
install -m 0755 mscs $(MSCS)
install -m 0644 mscs.completion $(MSCS_COMPLETION)
if which systemctl; then \
install -m 0644 mscs.service $(MSCS_SERVICE); \
fi
2016-06-19 13:06:40 -07:00
@for script in $(UPDATE_D); do \
sh $$script; \
done; true;
2013-12-02 20:39:12 -07:00
clean:
if which systemctl; then \
systemctl -f disable mscs.service; \
rm -f $(MSCS_SERVICE); \
else \
update-rc.d mscs remove; \
rm -f $(MSCS_INIT_D); \
fi
rm -f $(MSCTL) $(MSCS) $(MSCS_COMPLETION)