mirror of https://github.com/mikaku/Monitorix.git
fixed the 'Makefile' to install 'docs/debian.conf' as 'conf.d/00-debian.conf'
This commit is contained in:
parent
d287a5c074
commit
04d9d773d0
2
Changes
2
Changes
|
@ -52,6 +52,8 @@
|
|||
- Fixes a character shifted to the left in certain 'hplog' outputs. [#78]
|
||||
- Fixed the 'process' graph in Multihost mode.
|
||||
(thanks to Jeff Hendricks, jeffrey_hendricks AT hotmail.com for pointing this out)
|
||||
- Fixed the 'Makefile' to install 'docs/debian.conf' as 'conf.d/00-debian.conf'.
|
||||
[#79]
|
||||
- Small cosmetic changes.
|
||||
|
||||
|
||||
|
|
4
Makefile
4
Makefile
|
@ -154,7 +154,7 @@ install-debian:
|
|||
$(INSTALL_DIR) "$(DESTDIR)$(INITDIR_OTHER)"
|
||||
$(INSTALL_PROGRAM) docs/$(PN)-deb.init "$(DESTDIR)$(INITDIR_OTHER)/$(PN)"
|
||||
$(INSTALL_DIR) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d"
|
||||
$(INSTALL_DATA) docs/debian.conf "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/debian.conf"
|
||||
$(INSTALL_DATA) docs/debian.conf "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/00-debian.conf"
|
||||
|
||||
install-redhat:
|
||||
$(Q)echo -e '\033[1;32mInstalling redhat sysv service...\033[0m'
|
||||
|
@ -203,7 +203,7 @@ uninstall-upstart:
|
|||
|
||||
uninstall-debian:
|
||||
$(RM) "$(DESTDIR)$(INITDIR_OTHER)/$(PN)"
|
||||
$(RM) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/debian.conf"
|
||||
$(RM) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/00-debian.conf"
|
||||
|
||||
uninstall-redhat:
|
||||
$(RM) "$(DESTDIR)$(INITDIR_RHEL)/$(PN)"
|
||||
|
|
Loading…
Reference in New Issue