X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=lfs%2Fcheck_mk_agent;h=ab7f1da95db497f568eb0f697094f0f5df612512;hp=0a6cd1d53590787556df5640a30a9dbf16b506c5;hb=cae1f4a7a82f47703afb0cc25ff71f7585b28c2b;hpb=6a1cdd5fda6b0f17033762c2507fc542a4b89bfd diff --git a/lfs/check_mk_agent b/lfs/check_mk_agent index 0a6cd1d535..ab7f1da95d 100644 --- a/lfs/check_mk_agent +++ b/lfs/check_mk_agent @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007 Michael Tremer & Christian Schmidt # +# Copyright (C) 2007-2018 IPFire Team # # # # 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,15 +24,15 @@ include Config -VER = 1.2.2p2 +VER = 1.2.4p5 THISAPP = check_mk_agent-$(VER) DL_FILE = check_mk-${VER}.tar.gz -DL_FROM = http://mathias-kettner.de/download +DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/check_mk-${VER} TARGET = $(DIR_INFO)/$(THISAPP) PROG = check_mk_agent -PAK_VER = 2 +PAK_VER = 4 DEPS = "" @@ -44,7 +44,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = caa0f7662b4d170b2b6db2516bd41a89 +$(DL_FILE)_MD5 = ef3055d191bd38295d1716b3f7824115 install : $(TARGET) check : $(patsubst %,$(DIR_CHK)/%,$(objects)) @@ -78,7 +78,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && tar xzf agents.tar.gz cd $(DIR_APP) && install -v -m 755 check_mk_agent.linux /usr/bin/check_mk_agent - cd $(DIR_APP) && install -v -m 755 xinetd.conf /etc/xinet.d/check_mk_agent + -mkdir /etc/xinetd.d + cd $(DIR_APP) && install -v -m 755 xinetd.conf /etc/xinetd.d/check_mk_agent cd $(DIR_APP) && gcc $(CFLAGS) waitmax.c -o waitmax cd $(DIR_APP) && install -v -m 755 waitmax /usr/bin/waitmax @rm -rf $(DIR_APP)