forked from EUDAT-B2ACCESS/b2access-probe
-
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.
Merge pull request #11 from ARGOeu-Metrics/devel
Devel
- Loading branch information
Showing
3 changed files
with
18 additions
and
39 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
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
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 |
---|---|---|
|
@@ -13,10 +13,10 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
Name: nagios-plugins-eudat-b2access | ||
Name: argo-probe-eudat-b2access | ||
Version: 0.4 | ||
Release: 2%{?dist} | ||
Summary: Nagios B2ACCESS probes | ||
Summary: Monitoring metrics for B2ACCESS | ||
License: Apache License, Version 2.0 | ||
Packager: Shiraz Memon <[email protected]> | ||
|
||
|
@@ -36,7 +36,7 @@ Requires: python2-validators | |
|
||
|
||
%description | ||
Nagios probes to check functionality of B2ACCESS Service | ||
Monitoring metrics to check functionality of B2ACCESS Service | ||
|
||
%prep | ||
%setup -q | ||
|
@@ -46,20 +46,22 @@ Nagios probes to check functionality of B2ACCESS Service | |
|
||
%install | ||
|
||
install -d %{buildroot}/%{_libexecdir}/argo-monitoring/probes/%{probe_namespace} | ||
install -m 755 check_b2access.py %{buildroot}/%{_libexecdir}/argo-monitoring/probes/%{probe_namespace}/check_b2access.py | ||
install -m 755 check_b2access_simple.py %{buildroot}/%{_libexecdir}/argo-monitoring/probes/%{probe_namespace}/check_b2access_simple.py | ||
install -d %{buildroot}/%{_libexecdir}/argo/probes/%{probe_namespace} | ||
install -m 755 check_b2access.py %{buildroot}/%{_libexecdir}/argo/probes/%{probe_namespace}/check_b2access.py | ||
install -m 755 check_b2access_simple.py %{buildroot}/%{_libexecdir}/argo/probes/%{probe_namespace}/check_b2access_simple.py | ||
|
||
%files | ||
%dir /%{_libexecdir}/argo-monitoring | ||
%dir /%{_libexecdir}/argo-monitoring/probes/ | ||
%dir /%{_libexecdir}/argo-monitoring/probes/%{probe_namespace} | ||
%dir /%{_libexecdir}/argo | ||
%dir /%{_libexecdir}/argo/probes/ | ||
%dir /%{_libexecdir}/argo/probes/%{probe_namespace} | ||
|
||
%attr(0755,root,root) /%{_libexecdir}/argo-monitoring/probes/%{probe_namespace}/check_b2access.py | ||
%attr(0755,root,root) /%{_libexecdir}/argo-monitoring/probes/%{probe_namespace}/check_b2access_simple.py | ||
%attr(0755,root,root) /%{_libexecdir}/argo/probes/%{probe_namespace}/check_b2access.py | ||
%attr(0755,root,root) /%{_libexecdir}/argo/probes/%{probe_namespace}/check_b2access_simple.py | ||
|
||
%changelog | ||
* Mon Jan 24 2022 Themis Zamani <[email protected]> - 0.4-2 | ||
* Tue Mar 15 2022 Themis Zamani <[email protected]> - 0.4-2 | ||
- Update the spec file requirements | ||
* Mon Jan 24 2022 Themis Zamani <[email protected]> - 0.4-2 | ||
- Update the spec file requirements | ||
* Tue Jun 05 2018 Shiraz Memon <[email protected]> - 0.4-1 | ||
- Adapted to Unity v2.x.x REST API | ||
|