mirror of
https://github.com/MinecraftServerControl/mscs.git
synced 2024-11-15 14:58:18 -07:00
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
MSCS_USER := minecraft
|
|
MSCS_GROUP := 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: $(MSCS_HOME) update
|
|
useradd --system --user-group --create-home --home $(MSCS_HOME) $(MSCS_USER)
|
|
chown -R $(MSCS_USER):$(MSCS_GROUP) $(MSCS_HOME)
|
|
if which systemctl; then \
|
|
systemctl -f enable mscs.service; \
|
|
else \
|
|
ln -s $(MSCS) $(MSCS_INIT_D); \
|
|
update-rc.d mscs defaults; \
|
|
fi
|
|
|
|
update:
|
|
cp msctl $(MSCTL)
|
|
cp mscs $(MSCS)
|
|
cp mscs.completion $(MSCS_COMPLETION)
|
|
if which systemctl; then \
|
|
cp 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)
|
|
|
|
$(MSCS_HOME):
|
|
mkdir -p -m 755 $(MSCS_HOME)
|