Makefile 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. BINDIR:=/usr/local/bin
  2. LROTDIR:=/etc/logrotate.d
  3. INSTALLDIR:=/etc
  4. RELEASEURL:="https://github.com/vladimirok5959/bash-empty-daemon/releases/download/latest/daemon.zip"
  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. chmod 744 $(BINDIR)/$(NAME); \
  51. fi
  52. create-logrotate: check-manual-run check-if-name-set
  53. @if [ ! -z "$(NAME)" ]; then \
  54. echo "Create config file for logrotate..."; \
  55. echo "$(INSTALLDIR)/logs/all.log {" > $(LROTDIR)/$(NAME); \
  56. echo " daily" >> $(LROTDIR)/$(NAME); \
  57. echo " missingok" >> $(LROTDIR)/$(NAME); \
  58. echo " rotate 14" >> $(LROTDIR)/$(NAME); \
  59. echo " compress" >> $(LROTDIR)/$(NAME); \
  60. echo " delaycompress" >> $(LROTDIR)/$(NAME); \
  61. echo " notifempty" >> $(LROTDIR)/$(NAME); \
  62. echo " create 640 root root" >> $(LROTDIR)/$(NAME); \
  63. echo " sharedscripts" >> $(LROTDIR)/$(NAME); \
  64. echo "}" >> $(LROTDIR)/$(NAME); \
  65. fi
  66. show-done-msg: check-manual-run
  67. @echo "Done! Daemon with name '$(NAME)' successfully generated!"
  68. check-if-name-set:
  69. @if [ -z "$(NAME)" ]; then \
  70. echo "You must provide a NAME for daemon. For example 'make install NAME=my-service'..."; \
  71. exit 1; \
  72. fi
  73. check-manual-run:
  74. @if [ "$(SINITED)" != "1" ]; then \
  75. echo "Aborted. You can't run this command manually"; \
  76. exit 1; \
  77. fi