mirror of
https://github.com/MinecraftServerControl/mscs.git
synced 2024-11-15 06:48:16 -07:00
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
MSCS_USER := minecraft
|
|
MSCS_HOME := /opt/mscs
|
|
|
|
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
|
|
|
|
UPDATE_D := $(wildcard update.d/*)
|
|
|
|
.PHONY: install update clean
|
|
|
|
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
|
|
|
|
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
|
|
@for script in $(UPDATE_D); do \
|
|
sh $$script; \
|
|
done; true;
|
|
|
|
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)
|