Makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. RELEASEURL:="https://github.com/vladimirok5959/bash-empty-daemon/releases/download/latest/daemon.zip"
  2. BINDIR:=/usr/local/bin
  3. LROTDIR:=/etc/logrotate.d
  4. INSTALLDIR:=/etc
  5. SINITED:="0"
  6. default: check info
  7. install: check dir-test download create-link create-logrotate show-done-msg
  8. check:
  9. $(eval SINITED="1")
  10. @echo "Check for dependences..."
  11. @wget -V > /dev/null
  12. @unzip -v > /dev/null
  13. dir-test: check-manual-run check-if-name-set
  14. @echo "Check directories..."
  15. @if [ ! -d "$(BINDIR)" ]; then \
  16. echo "Aborted. Dir '$(BINDIR)' is not exists"; \
  17. exit 1; \
  18. fi
  19. @if [ ! -d "$(LROTDIR)" ]; then \
  20. echo "Aborted. Dir '$(LROTDIR)' is not exists"; \
  21. exit 1; \
  22. fi
  23. @if [ ! -d "$(INSTALLDIR)" ]; then \
  24. echo "Aborted. Dir '$(INSTALLDIR)' is not exists"; \
  25. exit 1; \
  26. fi
  27. @if [ -d "$(INSTALLDIR)/$(NAME)" ]; then \
  28. echo "Aborted. Directory '$(INSTALLDIR)/$(NAME)' already exists"; \
  29. exit 1; \
  30. fi
  31. info: check-manual-run
  32. @echo "You can run 'make install NAME=my-service'"
  33. download: check-manual-run check-if-name-set
  34. @if [ ! -z "$(NAME)" ]; then \
  35. echo "Download latest empty daemon..."; \
  36. cd $(INSTALLDIR); \
  37. mkdir $(NAME); \
  38. cd $(NAME); \
  39. wget -q $(RELEASEURL) > /dev/null; \
  40. echo "Installing..."; \
  41. unzip -o daemon.zip > /dev/null; \
  42. rm daemon.zip; \
  43. mv run.sh $(NAME).sh; \
  44. chmod 744 $(NAME).sh; \
  45. fi
  46. create-link: check-manual-run check-if-name-set
  47. @if [ ! -z "$(NAME)" ]; then \
  48. echo "Create symlink..."; \
  49. ln -sf $(INSTALLDIR)/$(NAME).sh $(BINDIR)/$(NAME); \
  50. fi
  51. create-logrotate: check-manual-run check-if-name-set
  52. @if [ ! -z "$(NAME)" ]; then \
  53. echo "Create config file for logrotate..."; \
  54. echo "$(INSTALLDIR)/logs/all.log {" > $(LROTDIR)/$(NAME); \
  55. echo " daily" >> $(LROTDIR)/$(NAME); \
  56. echo " missingok" >> $(LROTDIR)/$(NAME); \
  57. echo " rotate 14" >> $(LROTDIR)/$(NAME); \
  58. echo " compress" >> $(LROTDIR)/$(NAME); \
  59. echo " delaycompress" >> $(LROTDIR)/$(NAME); \
  60. echo " notifempty" >> $(LROTDIR)/$(NAME); \
  61. echo " create 640 root root" >> $(LROTDIR)/$(NAME); \
  62. echo " sharedscripts" >> $(LROTDIR)/$(NAME); \
  63. echo "}" >> $(LROTDIR)/$(NAME); \
  64. fi
  65. show-done-msg: check-manual-run
  66. @echo "Done! Daemon with name '$(NAME)' successfully generated!"
  67. check-if-name-set:
  68. @if [ -z "$(NAME)" ]; then \
  69. echo "You must provide a NAME for daemon. For example 'make install NAME=my-service'..."; \
  70. exit 1; \
  71. fi
  72. check-manual-run:
  73. @if [ "$(SINITED)" != "1" ]; then \
  74. echo "Aborted. You can't run this command manually"; \
  75. exit 1; \
  76. fi