-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move common from bundles to minor packages
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include unibuild/unibuild.make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
%define perfsonar_auto_version 5.2.0 | ||
%define perfsonar_auto_relnum 0.a1.0 | ||
|
||
Version: %{perfsonar_auto_version} | ||
Name: perfsonar-common | ||
Summary: Package common to all perfSONAR tools | ||
Release: %{perfsonar_auto_relnum}%{?dist} | ||
License: ASL 2.0 | ||
Group: Applications/Communications | ||
URL: http://www.perfsonar.net/ | ||
BuildArch: noarch | ||
Requires: coreutils | ||
Requires(pre): coreutils | ||
Requires(post): coreutils | ||
Obsoletes: perfSONAR-Bundles-common | ||
Provides: perfSONAR-Bundles-common | ||
|
||
%description | ||
Package common to all perfsonar tools. Creates users, groups, logging directories, etc. | ||
|
||
%pre | ||
/usr/sbin/groupadd -r perfsonar 2> /dev/null || : | ||
/usr/sbin/useradd -g perfsonar -r -s /sbin/nologin -c "perfSONAR User" -d /tmp perfsonar 2> /dev/null || : | ||
|
||
%post | ||
mkdir -p /var/log/perfsonar | ||
chown perfsonar:perfsonar /var/log/perfsonar | ||
mkdir -p /var/lib/perfsonar/bundles | ||
|
||
%files | ||
%defattr(0644,perfsonar,perfsonar,0755) | ||
|
||
%changelog | ||
* Fri Oct 15 2021 [email protected] | ||
- Add logstash configuration | ||
* Mon Jul 14 2015 [email protected] | ||
- common bundle | ||
* Mon Jul 06 2015 [email protected] | ||
- Tools bundle | ||
* Wed Mar 25 2015 [email protected] | ||
- Core bundle | ||
* Tue Mar 24 2015 [email protected] | ||
- Testpoint and CentralManagement bundle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters