-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
37 additions
and
15 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
File renamed without changes.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
__author__ = 'Dmitry Vasilyev' | ||
__author_email__ = '[email protected]' | ||
__description__ = 'Monitoring agent for PostgreSQL' | ||
__version__ = '3.5.8' | ||
__version__ = '3.5.9' | ||
__licence__ = 'BSD' | ||
|
||
__url__ = 'https://github.com/postgrespro/mamonsu' | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Name: mamonsu | ||
Version: 3.5.8 | ||
Version: 3.5.9 | ||
Release: 1%{?dist} | ||
Summary: Monitoring agent for PostgreSQL | ||
Group: Applications/Internet | ||
|
@@ -57,22 +57,26 @@ getent passwd mamonsu > /dev/null || \ | |
-c "mamonsu monitoring user" mamonsu | ||
|
||
mkdir -p /var/run/mamonsu | ||
chown -R mamonsu.mamonsu /var/run/mamonsu | ||
chown -R mamonsu:mamonsu /var/run/mamonsu | ||
|
||
mkdir -p /etc/mamonsu/plugins | ||
touch /etc/mamonsu/plugins/__init__.py | ||
|
||
mkdir -p /var/log/mamonsu | ||
chown -R mamonsu.mamonsu /var/log/mamonsu | ||
chown -R mamonsu:mamonsu /var/log/mamonsu | ||
|
||
%preun | ||
/sbin/service mamonsu stop >/dev/null 2>&1 | ||
/sbin/chkconfig --del mamonsu | ||
|
||
%post | ||
chown -R mamonsu.mamonsu /etc/mamonsu | ||
chown -R mamonsu:mamonsu /etc/mamonsu | ||
|
||
%changelog | ||
* Mon Aug 19 2024 Maxim Styushin <[email protected]> - 3.5.9-1 | ||
- Run on systems with latest setuptools installed (>67.7.2); | ||
- Drop using dotted user:group specification in RPM pre-install stage; | ||
|
||
* Thu Apr 18 2024 Maxim Styushin <[email protected]> - 3.5.8-1 | ||
- Prepare for python 3.12: remove deprecated distutils imports; | ||
|
||
|
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