]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - lfs/monit
Bump PAK_VER for all packages that use SERVICES
[people/pmueller/ipfire-2.x.git] / lfs / monit
index 6c35c6ced91f74ad39773a19c3a6c8d8d4204d38..4793129e4afa84584cc28975106d4ed33b474e60 100644 (file)
--- a/lfs/monit
+++ b/lfs/monit
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2009  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2007-2022  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,8 @@
 
 include Config
 
-VER        = 5.11
+VER        = 5.32.0
+SUMMARY    = Utility for monitoring services on a Unix system
 
 THISAPP    = monit-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,9 +33,11 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = monit
-PAK_VER    = 3
+PAK_VER    = 20
 
-DEPS       = ""
+DEPS       =
+
+SERVICES   = monit
 
 ###############################################################################
 # Top-level Rules
@@ -44,7 +47,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = ff00f39d248ed7068932ed82211da9e6
+$(DL_FILE)_BLAKE2 = 48b824365dca349914ffc066a19758f23fee122fb29b1aed5cecad6f97799a987752e3e59cbed488282738c755fdf4d7c95dbe85069f2e070c28f03a324e0a7f
 
 install : $(TARGET)
 
@@ -52,13 +55,13 @@ check : $(patsubst %,$(DIR_CHK)/%,$(objects))
 
 download :$(patsubst %,$(DIR_DL)/%,$(objects))
 
-md5 : $(subst %,%_MD5,$(objects))
+b2 : $(subst %,%_BLAKE2,$(objects))
 
-dist: 
+dist:
        @$(PAK)
 
 ###############################################################################
-# Downloading, checking, md5sum
+# Downloading, checking, b2sum
 ###############################################################################
 
 $(patsubst %,$(DIR_CHK)/%,$(objects)) :
@@ -67,8 +70,8 @@ $(patsubst %,$(DIR_CHK)/%,$(objects)) :
 $(patsubst %,$(DIR_DL)/%,$(objects)) :
        @$(LOAD)
 
-$(subst %,%_MD5,$(objects)) :
-       @$(MD5)
+$(subst %,%_BLAKE2,$(objects)) :
+       @$(B2SUM)
 
 ###############################################################################
 # Installation Details
@@ -77,17 +80,26 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
+       cd $(DIR_APP) && ./configure \
+       --prefix=/usr \
+       --sysconfdir=/etc \
+       --localstatedir=/var
+
        cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
 
+       mkdir -p /var/lib/monit
+
        install -v -m 644 $(DIR_SRC)/config/backup/includes/monit \
-                        /var/ipfire/backup/addons/includes/monit
+               /var/ipfire/backup/addons/includes/monit
+
+       # Install default configuration
+       install -v -m 600 $(DIR_SRC)/config/monit/monitrc /etc
 
-       # Install default configuration                                                                                       
-       install -v -m 600 $(DIR_SRC)/config/monit/monitrc /etc 
+       #install initscripts
+       $(call INSTALL_INITSCRIPTS,$(SERVICES))
 
-       # Install start links and backup include file. 
+       # Install start links and backup include file.
        ln -sf ../init.d/monit /etc/rc.d/rc3.d/S60monit
        ln -sf ../init.d/monit /etc/rc.d/rc0.d/K40monit
        ln -sf ../init.d/monit /etc/rc.d/rc6.d/K40monit