pgmon/RPM/pgmon.spec

35 lines
727 B
RPMSpec
Raw Normal View History

2025-01-08 23:34:51 +00:00
Name: pgmon
Version: 1.0
Release: 1%{?dist}
Summary: A bridge to sit between monitoring tools and PostgreSQL
License: MIT
URL: https://www.commandprompt.com
2025-01-10 05:40:41 +00:00
BuildArch: noarch
2025-01-08 23:34:51 +00:00
Requires: python3, python3-psycopg2, systemd
%description
A bridge to sit between monitoring tools and PostgreSQL
%prep
2025-01-09 01:58:52 +00:00
# Do nothing since we don't need a tarball
2025-01-08 23:34:51 +00:00
%build
2025-01-09 01:58:52 +00:00
# Do nothing since we have nothing to build
2025-01-08 23:34:51 +00:00
%install
make -C /src install DESTDIR=%{buildroot}
%files
/usr/local/bin/pgmon
/usr/share/man/man1/pgmon.1.gz
/etc/pgmon/pgmon.yml
/etc/pgmon/pgmon-metrics.yml
/lib/systemd/system/pgmon.service
/lib/systemd/system/pgmon@.service
%changelog
* Wed Jan 08 2025 James Campbell <james@commandprompt.com> - 1.0-1
- Initial RPM release.