Compare commits
9 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8ea08299be | ||
|
|
137e090ce2 | ||
|
|
dcadaccf9a | ||
|
|
e1bed0266f | ||
|
|
aa57653101 | ||
|
|
dcc2ffa01e | ||
|
|
26b53e09fc | ||
|
|
672ed0fd5f | ||
|
|
b5aedd378f |
7 changed files with 273 additions and 425 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
|
@ -1,16 +1,8 @@
|
|||
/FusionInventory-Agent-2.3.15.tar.gz
|
||||
/FusionInventory-Agent-2.3.16.tar.gz
|
||||
/2.3.17.tar.gz
|
||||
/2.3.18.tar.gz
|
||||
*spec~
|
||||
/FusionInventory-Agent-2.1.9.tar.gz
|
||||
/FusionInventory-Agent-2.1.12.tar.gz
|
||||
/FusionInventory-Agent-2.1.14.tar.gz
|
||||
/FusionInventory-Agent-2.3.18.tar.gz
|
||||
/FusionInventory-Agent-2.3.19.tar.gz
|
||||
/FusionInventory-Agent-2.3.20.tar.gz
|
||||
/FusionInventory-Agent-2.3.21.tar.gz
|
||||
/FusionInventory-Agent-2.4.tar.gz
|
||||
/FusionInventory-Agent-2.4.1.tar.gz
|
||||
/FusionInventory-Agent-2.4.2.tar.gz
|
||||
/FusionInventory-Agent-2.4.3.tar.gz
|
||||
/FusionInventory-Agent-2.5.tar.gz
|
||||
/FusionInventory-Agent-2.5.1.tar.gz
|
||||
/FusionInventory-Agent-2.5.2.tar.gz
|
||||
/FusionInventory-Agent-2.6.tar.gz
|
||||
|
|
|
|||
34
fusioninventory-agent-useless-module-cleaning
Normal file
34
fusioninventory-agent-useless-module-cleaning
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
From 25404f038f99bd091e0fb2368879e848500f5082 Mon Sep 17 00:00:00 2001
|
||||
From: tlornet <tlornet@teclib.com>
|
||||
Date: Wed, 22 Jun 2016 16:01:54 +0200
|
||||
Subject: [PATCH] useless module cleaning
|
||||
|
||||
---
|
||||
Makefile.PL | 1 -
|
||||
lib/FusionInventory/Agent/Config.pm | 1 -
|
||||
2 files changed, 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile.PL b/Makefile.PL
|
||||
index 55987d3..ea39425 100644
|
||||
--- a/Makefile.PL
|
||||
+++ b/Makefile.PL
|
||||
@@ -18,7 +18,6 @@ requires 'Net::IP' => '0';
|
||||
requires 'Text::Template' => '0';
|
||||
requires 'UNIVERSAL::require' => '0';
|
||||
requires 'XML::TreePP' => '0.26';
|
||||
-requires 'Data::Structure::Util' => '0';
|
||||
|
||||
if ($OSNAME eq 'MSWin32') {
|
||||
requires 'Win32::OLE' => '0';
|
||||
diff --git a/lib/FusionInventory/Agent/Config.pm b/lib/FusionInventory/Agent/Config.pm
|
||||
index 90d5295..8480018 100644
|
||||
--- a/lib/FusionInventory/Agent/Config.pm
|
||||
+++ b/lib/FusionInventory/Agent/Config.pm
|
||||
@@ -7,7 +7,6 @@ use English qw(-no_match_vars);
|
||||
use File::Spec;
|
||||
use Getopt::Long;
|
||||
use UNIVERSAL::require;
|
||||
-use Data::Structure::Util qw/unbless/;
|
||||
|
||||
require FusionInventory::Agent::Tools;
|
||||
|
||||
|
|
@ -11,27 +11,27 @@ export PATH
|
|||
i=0
|
||||
while [ $i -lt ${#OCSMODE[*]} ]
|
||||
do
|
||||
if [ ${OCSMODE[$i]:-none} == cron ]; then
|
||||
OPTS=
|
||||
if [ ! -z "${OCSPAUSE[$i]}" ]; then
|
||||
OPTS="--wait ${OCSPAUSE[$i]}"
|
||||
fi
|
||||
if [ ${OCSMODE[$i]:-none} == cron ]; then
|
||||
OPTS=
|
||||
if [ ! -z "${OCSPAUSE[$i]}" ]; then
|
||||
OPTS="--wait ${OCSPAUSE[$i]}"
|
||||
fi
|
||||
|
||||
if [ ! -z "${OCSTAG[$i]}" ]; then
|
||||
OPTS="$OPTS --tag=${OCSTAG[$i]}"
|
||||
fi
|
||||
if [ ! -z "${OCSTAG[$i]}" ]; then
|
||||
OPTS="$OPTS --tag=${OCSTAG[$i]}"
|
||||
fi
|
||||
|
||||
if [ "z${OCSSERVER[$i]}" = 'zlocal' ]; then
|
||||
# Local inventory
|
||||
OPTS="$OPTS --local=/var/lib/$NAME"
|
||||
elif [ ! -z "${OCSSERVER[$i]}" ]; then
|
||||
# Remote inventory
|
||||
OPTS="$OPTS --lazy --server=${OCSSERVER[$i]}"
|
||||
fi
|
||||
echo "[$(date '+%c')] Running $NAME $OPTS"
|
||||
/usr/bin/$NAME $OPTIONS --logfile=$LOG $OPTS
|
||||
fi
|
||||
((i++))
|
||||
if [ "z${OCSSERVER[$i]}" = 'zlocal' ]; then
|
||||
# Local inventory
|
||||
OPTS="$OPTS --local=/var/lib/$NAME"
|
||||
elif [ ! -z "${OCSSERVER[$i]}" ]; then
|
||||
# Remote inventory
|
||||
OPTS="$OPTS --lazy --server=${OCSSERVER[$i]}"
|
||||
fi
|
||||
echo "[$(date '+%c')] Running $NAME $OPTS"
|
||||
/usr/bin/$NAME $FUSINVOPT --logfile=$LOG $OPTS
|
||||
fi
|
||||
((i++))
|
||||
done
|
||||
echo "[$(date '+%c')] End of cron job ($PATH)"
|
||||
|
||||
|
|
|
|||
111
fusioninventory-agent.init
Executable file
111
fusioninventory-agent.init
Executable file
|
|
@ -0,0 +1,111 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# chkconfig: - 88 12
|
||||
# description: FusionInventory Agent
|
||||
# processname: fusioninventory-agent
|
||||
# config: /etc/sysconfig/fusioninventory-agent.pid
|
||||
# pidfile: /var/run/fusioninventory-agent.pid
|
||||
### BEGIN INIT INFO
|
||||
# Provides: fusioninventory-agent
|
||||
# Required-Start: $local_fs $remote_fs $network $named $syslog $time
|
||||
# Required-Stop: $local_fs $remote_fs $network $named $syslog $time
|
||||
# Default-Start:
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: FusionInventory agent
|
||||
# Description: FusionInventory agent
|
||||
### END INIT INFO
|
||||
|
||||
# source function library
|
||||
. /etc/rc.d/init.d/functions
|
||||
|
||||
RETVAL=0
|
||||
desc="FusionInventory Agent"
|
||||
prog=fusioninventory-agent
|
||||
lockfile=/var/lock/subsys/$prog
|
||||
pidfile=/var/run/$prog.pid
|
||||
logfile=/var/log/$prog/$prog.log
|
||||
|
||||
# pull in sysconfig settings
|
||||
[ -r /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
|
||||
|
||||
#
|
||||
# Function that starts the daemon/service
|
||||
#
|
||||
do_start()
|
||||
{
|
||||
# Read configuration
|
||||
i=0
|
||||
OPTS=
|
||||
SERVERS=
|
||||
while [ $i -lt ${#OCSMODE[*]} ]
|
||||
do
|
||||
if [ ${OCSMODE[$i]:-none} == daemon ]; then
|
||||
if [ ! -z "${OCSTAG[$i]}" ]; then
|
||||
OPTS="$OPTS --tag=${OCSTAG[$i]}"
|
||||
fi
|
||||
if [ "z${OCSSERVER[$i]}" = 'zlocal' ]; then
|
||||
# Local inventory
|
||||
OPTS="$OPTS --local=/var/lib/$prog"
|
||||
elif [ ! -z "${OCSSERVER[$i]}" ]; then
|
||||
# Remote inventory
|
||||
if [ -z "$SERVERS" ]; then
|
||||
SERVERS=${OCSSERVER[$i]}
|
||||
else
|
||||
SERVERS="$SERVERS,${OCSSERVER[$i]}"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
((i++))
|
||||
done
|
||||
if [ -n "$SERVERS" ]; then
|
||||
OPTS="$OPTS --server=$SERVERS"
|
||||
fi
|
||||
if [ -n "$OPTS" ]; then
|
||||
echo -n $"Starting $prog: "
|
||||
daemon $prog --logfile-maxsize=999 --logfile=$logfile $FUSINVOPT --daemon $OPTS 2>/dev/null
|
||||
RETVAL=$?
|
||||
echo
|
||||
[ $RETVAL -eq 0 ] && touch $lockfile
|
||||
else
|
||||
RETVAL=0
|
||||
fi
|
||||
}
|
||||
|
||||
#
|
||||
# Function that stops the daemon/service
|
||||
#
|
||||
do_stop()
|
||||
{
|
||||
echo -n $"Stopping $prog: "
|
||||
killproc $prog
|
||||
RETVAL=$?
|
||||
echo
|
||||
if [ $RETVAL -eq 0 ] ; then
|
||||
rm -f $lockfile $pidfile
|
||||
fi
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
do_start
|
||||
;;
|
||||
stop)
|
||||
do_stop
|
||||
;;
|
||||
status)
|
||||
status $prog
|
||||
;;
|
||||
restart|reload|force-reload)
|
||||
do_stop
|
||||
do_start
|
||||
;;
|
||||
condrestart)
|
||||
[ -f $lockfile ] && do_stop && do_start || :
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
exit $RETVAL
|
||||
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
# It is not recommended to modify this file in-place, because it will be
|
||||
# overwritten during package upgrades. If you want to customize, the best
|
||||
# way is to use the "systemctl edit" command to create an override unit.
|
||||
|
||||
# For example, to pass additional options (for instance,
|
||||
# --no-category=software) to the agent at startup, create an override unit
|
||||
# (as is done by systemctl edit) and enter the following:
|
||||
|
||||
# [Service]
|
||||
# Environment="OPTIONS=--no-category=software"
|
||||
|
||||
[Unit]
|
||||
Description=FusionInventory agent
|
||||
Documentation=man:fusioninventory-agent
|
||||
After=syslog.target network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/fusioninventory-agent --daemon --no-fork $OPTIONS
|
||||
ExecReload=/bin/kill -HUP $MAINPID
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
@ -5,50 +5,37 @@
|
|||
|
||||
Name: fusioninventory-agent
|
||||
Summary: FusionInventory agent
|
||||
# Automatically converted from old format: GPLv2+ - review is highly recommended.
|
||||
License: GPL-2.0-or-later
|
||||
Group: Applications/System
|
||||
License: GPLv2+
|
||||
URL: http://fusioninventory.org/
|
||||
|
||||
Version: 2.6
|
||||
Release: 15%{?dist}
|
||||
Version: 2.3.21
|
||||
Release: 4%{?dist}
|
||||
Source0: https://github.com/fusioninventory/%{name}/releases/download/%{version}/FusionInventory-Agent-%{version}.tar.gz
|
||||
Source1: %{name}.cron
|
||||
Source10: %{name}.service
|
||||
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: findutils
|
||||
BuildRequires: make
|
||||
BuildRequires: perl-generators
|
||||
BuildRequires: perl-interpreter
|
||||
BuildRequires: perl(Config)
|
||||
BuildRequires: perl(English)
|
||||
BuildRequires: perl(inc::Module::Install)
|
||||
BuildRequires: perl(Module::AutoInstall)
|
||||
BuildRequires: perl(Module::Install::Include)
|
||||
BuildRequires: perl(Module::Install::Makefile)
|
||||
BuildRequires: perl(Module::Install::Metadata)
|
||||
BuildRequires: perl(Module::Install::Scripts)
|
||||
BuildRequires: perl(Module::Install::WriteAll)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(warnings)
|
||||
BuildRequires: sed
|
||||
BuildRequires: systemd
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
|
||||
Requires: perl-FusionInventory-Agent = %{version}-%{release}
|
||||
Requires: logrotate
|
||||
Requires: cronie
|
||||
%ifarch %{ix86} x86_64
|
||||
Requires: dmidecode
|
||||
%endif
|
||||
|
||||
Requires(post): systemd
|
||||
Requires(preun): systemd
|
||||
Requires(postun): systemd
|
||||
Requires(post): /sbin/chkconfig
|
||||
Requires(preun): /sbin/chkconfig, /sbin/service
|
||||
Requires(postun): /sbin/service
|
||||
|
||||
# excluding internal requires and windows stuff
|
||||
# excluding perl(setup) and windows stuff
|
||||
%{?perl_default_filter}
|
||||
%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(setup\\)$
|
||||
%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Win32|setup\\)$
|
||||
#%{?perl_default_filter}
|
||||
#%global __provides_exclude %{?__provides_exclude:%__provides_exclude|}^perl\\(setup\\)$
|
||||
#%global __requires_exclude %{?__requires_exclude:%__requires_exclude|}^perl\\(Win32|setup\\)$
|
||||
%filter_from_requires /perl(setup)/d; /perl(Win32.*)/d
|
||||
%filter_from_provides /perl(setup)/d
|
||||
%filter_setup
|
||||
|
||||
%description
|
||||
FusionInventory Agent is an application designed to help a network
|
||||
|
|
@ -71,16 +58,19 @@ You can add additional packages for optional tasks:
|
|||
* fusioninventory-agent-task-collect
|
||||
Custom information retrieval support
|
||||
* fusioninventory-agent-task-wakeonlan
|
||||
Wake o lan task
|
||||
not included due to a licensing issue for perl-Net-Write
|
||||
|
||||
Edit the /etc/sysconfig/%{name} file for service configuration.
|
||||
|
||||
%package -n perl-FusionInventory-Agent
|
||||
Summary: Libraries for Fusioninventory agent
|
||||
BuildArch: noarch
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
Requires: perl(LWP)
|
||||
Requires: perl(Net::CUPS)
|
||||
Requires: perl(Net::SSLeay)
|
||||
Requires: perl(Proc::Daemon)
|
||||
Requires: perl(Proc::PID::File)
|
||||
Requires: perl(Socket::GetAddrInfo)
|
||||
|
||||
%description -n perl-FusionInventory-Agent
|
||||
|
|
@ -95,9 +85,22 @@ Requires: %{name} = %{version}-%{release}
|
|||
fusioninventory-agent-task-ESX ask the running service agent to inventory an
|
||||
VMWare vCenter/ESX/ESXi server through SOAP interface
|
||||
|
||||
%package yum-plugin
|
||||
Summary: Ask FusionInventory agent to send an inventory when yum exits
|
||||
Group: System Environment/Base
|
||||
BuildArch: noarch
|
||||
Requires: yum
|
||||
Requires: %{name}
|
||||
|
||||
%description yum-plugin
|
||||
fusioninventory-agent-yum-plugin asks the running service agent to send an
|
||||
inventory when yum exits.
|
||||
|
||||
This requires the service to be running with the --rpc-trust-localhost option.
|
||||
|
||||
%package task-network
|
||||
Summary: NetDiscovery and NetInventory task for FusionInventory
|
||||
Group: Applications/System
|
||||
BuildArch: noarch
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
|
|
@ -106,6 +109,7 @@ fusioninventory-task-netdiscovery and fusioninventory-task-netinventory
|
|||
|
||||
%package task-deploy
|
||||
Summary: Software deployment support for FusionInventory agent
|
||||
Group: Applications/System
|
||||
BuildArch: noarch
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: perl(Archive::Extract)
|
||||
|
|
@ -113,64 +117,67 @@ Requires: perl(Archive::Extract)
|
|||
%description task-deploy
|
||||
This package provides software deployment support for FusionInventory-agent
|
||||
|
||||
%if !%{defined perl_net_write}
|
||||
# Excluded due to the absence of perl-Net-Write
|
||||
# perl-Net-Write is licenced under Artistic Perl v1 licence, not accepted in Fedora
|
||||
%package task-wakeonlan
|
||||
Summary: WakeOnLan task for FusionInventory
|
||||
Group: Applications/System
|
||||
BuildArch: noarch
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description task-wakeonlan
|
||||
fusioninventory-task-wakeonlan
|
||||
%endif
|
||||
|
||||
%package task-inventory
|
||||
Summary: Inventory task for FusionInventory
|
||||
Group: Applications/System
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: perl(Net::CUPS)
|
||||
Requires: perl(Parse::EDID)
|
||||
#This one is not available on EL6 for now;
|
||||
#and this is a "recommanded", not a required one.
|
||||
#Requires: perl(Parse::EDID)
|
||||
|
||||
%description task-inventory
|
||||
fusioninventory-task-inventory
|
||||
|
||||
%package task-collect
|
||||
Summary: Custom information retrieval support for FusionInventory agent
|
||||
Group: Applications/System
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description task-collect
|
||||
This package provides custom information retrieval support for
|
||||
FusionInventory agent
|
||||
|
||||
%package cron
|
||||
Summary: Cron for FusionInventory agent
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description cron
|
||||
fusioninventory cron task
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n FusionInventory-Agent-%{version}
|
||||
|
||||
# Remove bundled modules
|
||||
rm -rf ./inc
|
||||
sed -e '/^inc\//d' -i MANIFEST
|
||||
sed -i contrib/unix/%{name}.init.redhat \
|
||||
-e "s/Default-Start: 3 5/Default-Start:/"
|
||||
|
||||
sed \
|
||||
-e "s/logger = .*/logger = syslog/" \
|
||||
-e "s/logfacility = .*/logfacility = LOG_DAEMON/" \
|
||||
-e 's|#include "conf\.d/"|include "conf\.d/"|' \
|
||||
-i etc/agent.cfg
|
||||
cat <<EOF | tee logrotate
|
||||
%{_localstatedir}/log/%{name}/*.log {
|
||||
weekly
|
||||
rotate 7
|
||||
compress
|
||||
notifempty
|
||||
missingok
|
||||
}
|
||||
EOF
|
||||
|
||||
cat <<EOF | tee %{name}.conf
|
||||
#
|
||||
# Fusion Inventory Agent Configuration File
|
||||
# used by hourly cron job to override the %{name}.cfg setup.
|
||||
# used by hourly cron job and service launcher to override the %{name}.cfg setup.
|
||||
#
|
||||
# /!\
|
||||
# USING THIS FILE TO OVERRIDE SERVICE OPTIONS IS DEPRECATED!
|
||||
# See %{_unitdir}/%{name}.service notice
|
||||
# DONT FORGET to enable the service !
|
||||
#
|
||||
# Add tools directory if needed (tw_cli, hpacucli, ipssend, ...)
|
||||
PATH=/sbin:/bin:/usr/sbin:/usr/bin
|
||||
# Global options (debug for verbose log)
|
||||
# Global options (debug for verbose log, rpc-trust-localhost for yum-plugin)
|
||||
OPTIONS="--debug "
|
||||
|
||||
# Mode, change to "cron" to activate
|
||||
|
|
@ -191,76 +198,89 @@ OCSTAG[0]=
|
|||
EOF
|
||||
|
||||
|
||||
|
||||
%build
|
||||
perl Makefile.PL \
|
||||
PREFIX=%{_prefix} \
|
||||
SYSCONFDIR=%{_sysconfdir}/fusioninventory \
|
||||
LOCALSTATEDIR=%{_localstatedir}/lib/%{name} \
|
||||
VERSION=%{version}-%{release}
|
||||
LOCALSTATEDIR=%{_localstatedir}/lib/%{name}
|
||||
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
|
||||
make install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
|
||||
%{_fixperms} %{buildroot}/*
|
||||
|
||||
mkdir -p %{buildroot}%{_localstatedir}/lib/%{name}
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/fusioninventory/conf.d
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/systemd/system/%{name}.service.d
|
||||
mkdir -p %{buildroot}%{_localstatedir}/{log,lib}/%{name}
|
||||
|
||||
install -m 644 -D logrotate %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
|
||||
install -m 644 -D %{name}.conf %{buildroot}%{_sysconfdir}/sysconfig/%{name}
|
||||
install -m 755 -Dp %{SOURCE1} %{buildroot}%{_sysconfdir}/cron.hourly/%{name}
|
||||
install -m 644 -D %{SOURCE10} %{buildroot}%{_unitdir}/%{name}.service
|
||||
install -m 755 -D contrib/unix/%{name}.init.redhat %{buildroot}%{_initrddir}/%{name}
|
||||
|
||||
|
||||
# Yum plugin installation
|
||||
install -m 644 -D contrib/yum-plugin/%{name}.py %{buildroot}%{_prefix}/lib/yum-plugins/%{name}.py
|
||||
install -m 644 -D contrib/yum-plugin/%{name}.conf %{buildroot}%{_sysconfdir}/yum/pluginconf.d/%{name}.conf
|
||||
|
||||
%check
|
||||
#make test
|
||||
|
||||
%post
|
||||
%systemd_post fusioninventory-agent.service
|
||||
/sbin/chkconfig --add %{name}
|
||||
|
||||
|
||||
%preun
|
||||
%systemd_preun fusioninventory-agent.service
|
||||
if [ $1 -eq 0 ] ; then
|
||||
/sbin/service %{name} stop &>/dev/null
|
||||
/sbin/chkconfig --del %{name}
|
||||
fi
|
||||
exit 0
|
||||
|
||||
|
||||
%postun
|
||||
%systemd_postun_with_restart fusioninventory-agent.service
|
||||
if [ $1 -ge 1 ]; then
|
||||
/sbin/service %{name} condrestart &>/dev/null
|
||||
fi
|
||||
exit 0
|
||||
|
||||
|
||||
%files
|
||||
%dir %{_sysconfdir}/fusioninventory
|
||||
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/agent.cfg
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/conf.d
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/inventory-server-plugin.cfg
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/server-test-plugin.cfg
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/ssl-server-plugin.cfg
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/proxy-server-plugin.cfg
|
||||
%config(noreplace) %{_sysconfdir}/fusioninventory/proxy2-server-plugin.cfg
|
||||
|
||||
%{_unitdir}/%{name}.service
|
||||
%dir %{_sysconfdir}/systemd/system/%{name}.service.d
|
||||
%{_sysconfdir}/cron.hourly/%{name}
|
||||
%{_initrddir}/%{name}
|
||||
%{_bindir}/fusioninventory-agent
|
||||
%{_bindir}/fusioninventory-injector
|
||||
%{_mandir}/man1/fusioninventory-agent*
|
||||
%{_mandir}/man1/fusioninventory-injector*
|
||||
%dir %{_localstatedir}/log/%{name}
|
||||
%dir %{_localstatedir}/lib/%{name}
|
||||
%dir %{_datadir}/fusioninventory
|
||||
%dir %{_datadir}/fusioninventory/lib
|
||||
%dir %{_datadir}/fusioninventory/lib/FusionInventory
|
||||
%dir %{_datadir}/fusioninventory/lib/FusionInventory/Agent
|
||||
%dir %{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task
|
||||
#excluding sub-packages files
|
||||
#%%exclude %%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/
|
||||
|
||||
|
||||
|
||||
%files -n perl-FusionInventory-Agent
|
||||
%doc Changes LICENSE THANKS
|
||||
#excluding sub-packages files
|
||||
#%%exclude %%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/*
|
||||
%{_datadir}/fusioninventory
|
||||
|
||||
%files yum-plugin
|
||||
%config(noreplace) %{_sysconfdir}/yum/pluginconf.d/%{name}.conf
|
||||
%{_prefix}/lib/yum-plugins/%{name}.*
|
||||
|
||||
%files task-esx
|
||||
%{_bindir}/fusioninventory-esx
|
||||
%{_mandir}/man1/fusioninventory-esx.1*
|
||||
|
|
@ -279,169 +299,25 @@ install -m 644 -D %{SOURCE10} %{buildroot}%{_unitdir}/%{name}.service
|
|||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/Deploy.pm
|
||||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/Deploy
|
||||
|
||||
%files task-wakeonlan
|
||||
%{_bindir}/fusioninventory-wakeonlan
|
||||
%{_mandir}/man1/fusioninventory-wakeonlan.1*
|
||||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/WakeOnLan.pm
|
||||
# Excluding task-wakeonlan
|
||||
#%%files task-wakeonlan
|
||||
%exclude %{_bindir}/fusioninventory-wakeonlan
|
||||
%exclude %{_mandir}/man1/fusioninventory-wakeonlan.1*
|
||||
%exclude %{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/WakeOnLan.pm
|
||||
|
||||
%files task-inventory
|
||||
%{_bindir}/fusioninventory-inventory
|
||||
%{_bindir}/fusioninventory-remoteinventory
|
||||
%{_mandir}/man1/fusioninventory-*inventory.1*
|
||||
%{_mandir}/man1/fusioninventory-inventory.1*
|
||||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/Inventory.pm
|
||||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/Inventory
|
||||
|
||||
%files task-collect
|
||||
%{_datadir}/fusioninventory/lib/FusionInventory/Agent/Task/Collect.pm
|
||||
|
||||
%files cron
|
||||
%{_sysconfdir}/cron.hourly/%{name}
|
||||
%config(noreplace) %{_sysconfdir}/sysconfig/%{name}
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Thu Jul 25 2024 Miroslav Suchý <msuchy@redhat.com> - 2.6-13
|
||||
- convert license to SPDX
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jun 01 2022 Jitka Plesnikova <jplesnik@redhat.com> - 2.6-6
|
||||
- Perl 5.36 rebuild
|
||||
|
||||
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 2.6-3
|
||||
- Perl 5.34 rebuild
|
||||
|
||||
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 2.6-2
|
||||
- Rebuilt for updated systemd-rpm-macros
|
||||
See https://pagure.io/fesco/issue/2583.
|
||||
|
||||
* Fri Jan 29 2021 Marianne Lombard <jehane@fedoraproject.org> - 2.6-1
|
||||
- Bump release to 2.6
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue Jun 23 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.5.2-4
|
||||
- Perl 5.32 rebuild
|
||||
|
||||
* Thu Mar 12 2020 Petr Pisar <ppisar@redhat.com> - 2.5.2-3
|
||||
- Specify all dependencies and unbundle Module::Install
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Tue Dec 17 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5.2-1
|
||||
- Last upstream release
|
||||
- Drop patch applied upstream
|
||||
|
||||
* Mon Aug 12 2019 Marianne Lombard <jehane@fedoraproject.org> - 2.5.1-4
|
||||
- Fixing patch (thanks to E. Seyman - eseyman AT fedoraproject DOT org - help) and applying it
|
||||
- Fix issue #1735227 : FTBFS
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Mon Jul 15 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5.1-2
|
||||
- Add upstream HTTP server patch
|
||||
- add missing configuration files
|
||||
|
||||
* Mon Jul 08 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5.1-1
|
||||
- Last upstream release
|
||||
- Remove patches applied upstream
|
||||
|
||||
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.5-5
|
||||
- Perl 5.30 rebuild
|
||||
|
||||
* Tue May 07 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5-4
|
||||
- Add patch to fix SSL on with http modules
|
||||
|
||||
* Thu May 02 2019 Guillaume Bougard <gbougard AT teclib DOT com> - 2.5-3
|
||||
- Add patches to fix agent HTTP server plugins integration
|
||||
|
||||
* Thu Apr 18 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5-2
|
||||
- Re-add tasks files in main perl package, to solve dependencies issues on package
|
||||
|
||||
* Mon Apr 15 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.5-1
|
||||
- Last upstream release
|
||||
- Tasks files were provided also in main perl package
|
||||
- Apply upstream minor fixes patch
|
||||
- task-wakeonlan is back (see https://github.com/fusioninventory/fusioninventory-agent/issues/495#issuecomment-435110369 about dependancy issue)
|
||||
|
||||
* Tue Feb 26 2019 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.4.3-2
|
||||
- Remove yum plugin (and therefore dependency on yum)
|
||||
|
||||
* Mon Feb 25 2019 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4.3-1
|
||||
- Last upstream release
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Wed Oct 03 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4.2-1
|
||||
- Last upstream release
|
||||
- Drop patch applied upstream
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jul 10 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4.1-3
|
||||
- Add upstream patch to fix wrong variable name
|
||||
|
||||
* Fri Jul 06 2018 Petr Pisar <ppisar@redhat.com> - 2.4.1-2
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Tue Jul 03 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4.1-1
|
||||
- Last upstream release
|
||||
|
||||
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.4-6
|
||||
- Perl 5.28 rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.4-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Fri Jan 26 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4-4
|
||||
- Logrotate is no longer needed since we now use syslog
|
||||
|
||||
* Mon Jan 15 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4-3
|
||||
- Change logging according to upstream recommandations
|
||||
|
||||
* Thu Jan 11 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4-2
|
||||
- Drop systemd override conf file, thits is no longer needed
|
||||
|
||||
* Thu Jan 11 2018 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.4-1
|
||||
- Last upstream release
|
||||
- Put cron stuff in a separate sub-package
|
||||
- Provide conf.d configuration directory
|
||||
* Sat Nov 25 2017 Mairanne Lombard <jehane@fedoraproject.org> - 2.3.21-4
|
||||
- Fix perl filter issues; BZ #145919 - thanks to Jitka Plesnikova
|
||||
|
||||
* Mon Oct 16 2017 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.21-3
|
||||
- Do not provides perl(setup); BZ #1485919 - thanks to E. Seyman
|
||||
|
|
@ -452,166 +328,23 @@ install -m 644 -D %{SOURCE10} %{buildroot}%{_unitdir}/%{name}.service
|
|||
* Tue Aug 01 2017 Marianne Lombard <jehane@fedoraproject.org> - 2.3.21-1
|
||||
- Last upstream release
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.20-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.3.20-2
|
||||
- Perl 5.26 re-rebuild of bootstrapped packages
|
||||
|
||||
* Tue Jun 06 2017 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.20-1
|
||||
- Last upstream release
|
||||
- Drop patches, upstream has provided fixes
|
||||
|
||||
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.3.19-4
|
||||
- Perl 5.26 rebuild
|
||||
|
||||
* Wed May 17 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.3.19-3
|
||||
- Fix building on Perl without '.' in @INC
|
||||
|
||||
* Mon Feb 20 2017 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.19-2
|
||||
- Fix setup.pm values
|
||||
|
||||
* Sat Feb 18 2017 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.3.19-1
|
||||
* Mon Feb 20 2017 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.19-1
|
||||
- Last upstream release
|
||||
|
||||
* Thu Feb 09 2017 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.18-3
|
||||
- Change systemd unit to not use fork mode
|
||||
- Re-add options in sysconfig file to get cron mode running
|
||||
|
||||
* Wed Jun 22 2016 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.3.18-2
|
||||
- Add task-collect subpackage
|
||||
- Change package source according to upstream recomendations
|
||||
|
||||
* Tue Jun 21 2016 Johan Cwiklinski <johan AT x-tnd DOT be> - 2.3.18-1
|
||||
* Tue Jun 21 2016 Johan Cwiklinski <jcwiklinski AT teclib DOT com> - 2.3.18-1
|
||||
- Last upstream release
|
||||
- Handle macros in comments to make rpmlint happy
|
||||
- Cleanup comments
|
||||
|
||||
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.3.17-3
|
||||
- Perl 5.24 rebuild
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.3.17-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Oct 7 2015 Marianne Lombard <jehane@fedoraproject.org> - 2.3.17
|
||||
- new version
|
||||
- Upstream switch to github, minor spec adaptation
|
||||
|
||||
* Wed Jul 8 2015 Marianne Lombard <jehane@fedoraproject.org> - 2.3.16-5
|
||||
- fix for #1240964
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.16-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat Jun 06 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.3.16-3
|
||||
- Perl 5.22 rebuild
|
||||
|
||||
* Sun Mar 29 2015 Marianne Lombard <jehane@fedoraproject.org> - 2.3.16-2
|
||||
- commenting un-used BuildRequires
|
||||
|
||||
* Sun Mar 1 2015 Marianne Lombard <jehane@fedoraprojetc.org> - 2.3.16
|
||||
- update to 2.3.16
|
||||
- adding BuildRequires needed by test
|
||||
|
||||
* Sun Mar 1 2015 Marianne Lombard <jehane@fedoraproject.org> - 2.3.15-4
|
||||
- arch build (due to dmidecode dependancy in x86_64)
|
||||
|
||||
* Fri Feb 20 2015 Marianne Lombard <jehane@fedoraproject.org> - 2.3.15-3
|
||||
- building as noarch
|
||||
|
||||
* Wed Feb 11 2015 Marianne Lombard <marianne@tuxette.fr> - 2.3.15-2
|
||||
- fix description of subpackage
|
||||
- using upstream systemd unit file
|
||||
|
||||
* Mon Feb 9 2015 Marianne Lombard <marianne@tuxette.fr> - 2.3.15
|
||||
- new version and back in Fedora
|
||||
|
||||
* Mon Jan 19 2015 Marianne Lombard <marianne@tuxette.fr> - 2.3.14-2
|
||||
- enhancing spec according to review
|
||||
|
||||
* Wed Dec 24 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.14
|
||||
- new version
|
||||
|
||||
* Mon Dec 15 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.13
|
||||
- new version
|
||||
- updating spec according to fedora-review
|
||||
|
||||
* Tue Aug 5 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.12
|
||||
- new version
|
||||
|
||||
* Tue Aug 5 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.10.1-2
|
||||
- adding missing requires
|
||||
- updating config file
|
||||
|
||||
* Mon Aug 4 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.10.1
|
||||
- new version (bug fixes)
|
||||
|
||||
* Fri Aug 1 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.10
|
||||
- new version
|
||||
|
||||
* Wed Jul 23 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.9.1
|
||||
- new version
|
||||
|
||||
* Tue May 20 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.8-1
|
||||
- enhancing spec according to Michael Schwendt review
|
||||
- adding missing requires
|
||||
|
||||
* Fri May 16 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.8
|
||||
- new version
|
||||
|
||||
* Wed May 14 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.7.1
|
||||
- new version
|
||||
|
||||
* Sat Feb 1 2014 Marianne Lombard <marianne@tuxette.fr> - 2.3.6
|
||||
- new version, reintroduction in fedora and epel
|
||||
- cleanup of the spec (removing sysVinit stuff, old BuildRequires, old releases stuff)
|
||||
- adding sub-packages for task-* (using Guillaume Rousse OBS spec as model https://build.opensuse.org/package/view_file/home:guillomovitch/fusioninventory-agent/fusioninventory-agent.spec)
|
||||
- task-wakeonlan is excluded (dependancy issue)
|
||||
|
||||
* Wed Aug 8 2012 Remi Collet <remi@fedoraproject.org> - 2.2.4-2
|
||||
- dump release
|
||||
|
||||
* Wed Aug 8 2012 Remi Collet <remi@fedoraproject.org> - 2.2.4-1
|
||||
- version 2.2.4 fixes various bugs as described in
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.2.4/Changes
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.2.3/Changes
|
||||
|
||||
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.2-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Jun 25 2012 Petr Pisar <ppisar@redhat.com> - 2.2.2-4
|
||||
- Perl 5.16 rebuild
|
||||
|
||||
* Tue Jun 05 2012 Remi Collet <remi@fedoraproject.org> - 2.2.2-3
|
||||
- no need for debuginfo (not really arch, fix #828960)
|
||||
- yum plugin is also noarch
|
||||
|
||||
* Thu May 31 2012 Remi Collet <remi@fedoraproject.org> - 2.2.2-2
|
||||
- make package "arch"
|
||||
- requires dmidecode when available (x86)
|
||||
- add sub-package perl-FusionInventory-Agent (noarch)
|
||||
|
||||
* Wed May 30 2012 Remi Collet <remi@fedoraproject.org> - 2.2.2-1
|
||||
- update to 2.2.2
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.2.2/Changes
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.2.1/Changes
|
||||
|
||||
* Fri May 11 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-2
|
||||
- filter private provides/requires
|
||||
|
||||
* Thu May 10 2012 Remi Collet <remi@fedoraproject.org> - 2.2.0-1
|
||||
- update to 2.2.0
|
||||
http://search.cpan.org/src/FUSINV/FusionInventory-Agent-2.2.0/Changes
|
||||
- revert change in 2.2.0: don't loose arch information
|
||||
see http://forge.fusioninventory.org/issues/1581
|
||||
- Add task-* subpackages
|
||||
- Use upstream provided initscript
|
||||
- Update according to EL7 specfile
|
||||
|
||||
* Sun Feb 26 2012 Remi Collet <remi@fedoraproject.org> - 2.1.14-1
|
||||
- update to 2.1.14
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.1.14/Changes
|
||||
|
||||
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Nov 28 2011 Remi Collet <remi@fedoraproject.org> - 2.1.12-1
|
||||
- update to 2.1.12
|
||||
http://cpansearch.perl.org/src/FUSINV/FusionInventory-Agent-2.1.12/Changes
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (FusionInventory-Agent-2.6.tar.gz) = b400e8bbf1be117c110622e6f1e2e2eee744c4e79bf3686c9e4c9126f7d4cb7f2224149ab4e7ad9a686d0cdbcbe2aef1128766359270c7e9f00d78552f51aa45
|
||||
SHA512 (FusionInventory-Agent-2.3.21.tar.gz) = 5f5628b4851431fe0c93ebfffdc91281efaa8aed721cf79439dbb738bfc765d3d01bb5e639de7dd2fcfc06537f7b472ea8b14ae4b9e6e5c408b68039a8b2185e
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue