5 Commits

5 changed files with 20 additions and 7 deletions

1
.gitignore vendored
View File

@@ -2,3 +2,4 @@
*.log *.log
*spec-20* *spec-20*
*.tar.xz *.tar.xz
*.bak

View File

@@ -6,7 +6,14 @@ SMEServer Koozali developed git repo for smeserver-audittools smeserver
<br />https://wiki.koozali.org/ <br />https://wiki.koozali.org/
## Bugzilla ## Bugzilla
Show list of outstanding bugs: [here](https://bugs.koozali.org/buglist.cgi?component=smeserver-audittools&product=SME%20Server%2010.X&query_format=advanced&limit=0&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&bug_status=CONFIRMED) Show list of outstanding bugs:
[All](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&bug_status=CONFIRMED&bug_status=NEEDINFO&bug_status=IN_PROGRESS&bug_status=RESOLVED&bug_status=VERIFIED&cf_package=smeserver-audittools&classification=SME+Server&list_id=105756&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Confirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=CONFIRMED&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Unconfirmed](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=UNCONFIRMED&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Need info](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=NEEDINFO&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[In progress](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=IN_PROGRESS&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Resolved](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=RESOLVED&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
[Verified](https://bugs.koozali.org/buglist.cgi?action=wrap&bug_status=VERIFIED&cf_package=smeserver-audittools&classification=SME+Server&order=changeddate+DESC%2Ccomponent%2Cpriority%2Cbug_severity&query_format=advanced)
## Description ## Description

View File

@@ -2,12 +2,14 @@
#List rpms installed from outside the standard yum repositories #List rpms installed from outside the standard yum repositories
yum list extras \ dnf list extras \
--disablerepo=* \ --disablerepo=* \
--enablerepo=base \ --enablerepo=baseos \
--enablerepo=smeupdates \ --enablerepo=appstream \
--enablerepo=updates \ --enablerepo=powertools \
--enablerepo=smeos \ --enablerepo=smeos \
--enablerepo=smeaddons \ --enablerepo=smeaddons \
--enablerepo=remi-safe \ --enablerepo=remi-safe \
--enablerepo=remi-modular \
| grep -vi '@anaconda' \
| grep -vi gpg-pubkey | grep -vi gpg-pubkey

View File

@@ -83,7 +83,7 @@ sub rpm_status
my $st = stat($options{name}) or die "Couldn't stat $options{name}: $!"; my $st = stat($options{name}) or die "Couldn't stat $options{name}: $!";
return "MODIFIED " . $rpms[0]->as_nvre if ($st->mtime > $install_time); return "MODIFIED " . $rpms[0]->as_nvre if (! -l "$options{name}" && $st->mtime > $install_time);
return "OWNED_BY_RPM"; return "OWNED_BY_RPM";
} }

View File

@@ -4,7 +4,7 @@ Summary: SME Server auditing tools
%define name smeserver-audittools %define name smeserver-audittools
Name: %{name} Name: %{name}
%define version 11.0.0 %define version 11.0.0
%define release 3 %define release 4
Version: %{version} Version: %{version}
Release: %{release}%{?dist} Release: %{release}%{?dist}
License: GPL License: GPL
@@ -22,6 +22,9 @@ Tools for consistency audits of SME Servers. Useful for determining local
modifications prior to upgrades. modifications prior to upgrades.
%changelog %changelog
* Tue Mar 04 2025 Jean-Philippe Pialasse <jpp@koozali.org> 11.0.0-4.sme
- update newrpm, templates [SME: 11478]
* Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0.0-3.sme * Thu Apr 04 2024 Brian Read <brianr@koozali.org> 11.0.0-3.sme
- Set license file to GPL2.0 [SME: 12577] - Set license file to GPL2.0 [SME: 12577]