1 |
Summary: sme server system monitor |
Summary: sme server system monitor |
2 |
%define name smeserver-sysmon |
%define name smeserver-sysmon |
3 |
Name: %{name} |
Name: %{name} |
4 |
%define version 5.0 |
%define version 6.1 |
5 |
%define release 4 |
%define release 2 |
6 |
Version: %{version} |
Version: %{version} |
7 |
Release: %{release}%{?dist} |
Release: %{release}%{?dist} |
8 |
License: Freely distributable |
License: Freely distributable |
9 |
Group: Service |
Group: Service |
10 |
Source: %{name}-%{version}.tar.gz |
Source: %{name}-%{version}.tar.gz |
|
#Patch0: %{name}-%{version}.patch.yyyymmddnn |
|
11 |
BuildRoot: /var/tmp/e-smith-buildroot |
BuildRoot: /var/tmp/e-smith-buildroot |
12 |
BuildRequires: e-smith-devtools |
BuildRequires: e-smith-devtools |
13 |
BuildArchitectures: noarch |
BuildArchitectures: noarch |
14 |
Requires: smeserver-release >= 7, sysstat >= 5, rrdtool >= 1, perl-rrdtool >= 1 |
Requires: smeserver-release >= 7 |
15 |
|
Requires: sysstat >= 5 |
16 |
|
Requires: rrdtool >= 1.2 |
17 |
|
Requires: perl(RRDs) |
18 |
|
Requires: fping |
19 |
AutoReqProv: no |
AutoReqProv: no |
20 |
|
|
21 |
%changelog |
%changelog |
22 |
* Thu Oct 25 2007 Michel Van hees <michel@vanhees.cc> |
* Sat Mar 29 2008 Shad L. Lords <slords@mail.com> 6.1-2 |
23 |
- Fix a bug with different language |
- Clean up scripts to ensure clean upgrade |
24 |
|
|
25 |
* Mon Jul 24 2006 Michel Van hees <michel@vanhees.cc> |
* Thu Mar 27 2008 Shad L. Lords <slords@mail.com> 6.1-1 |
26 |
- 5.0.3 |
- Upgrade to new sysmon routines |
27 |
- Multi cpu graph display |
- Make compatible with rrdtool 1.2 |
28 |
|
- Format graphs so they look better |
29 |
* Fri Jul 14 2006 Michel Van hees <michel@vanhees.cc> |
- Make compatible with SME 7 & 8 |
|
- 5.0.2 |
|
|
- Disk size bug correction |
|
|
|
|
|
* Sat Jul 08 2006 Michel Van hees <michel@vanhees.cc> |
|
|
- 5.0-1 |
|
|
- adapt to sme server version 7 |
|
30 |
|
|
31 |
* Fri Apr 11 2003 Shad L. Lords <slords@mail.com> |
* Fri Apr 11 2003 Shad L. Lords <slords@mail.com> |
32 |
- 4.1-1 |
- 4.1-1 |
181 |
- initial release. Completely rewriten Monitor. |
- initial release. Completely rewriten Monitor. |
182 |
|
|
183 |
%description |
%description |
184 |
ubar compiled for smeserver version 7 |
System monitor for SME Server version 7 |
185 |
|
|
186 |
%prep |
%prep |
187 |
%setup |
%setup |
202 |
rm -rf $RPM_BUILD_ROOT |
rm -rf $RPM_BUILD_ROOT |
203 |
|
|
204 |
%pre |
%pre |
205 |
%preun |
if [ $1 -ge 1 ]; then |
206 |
|
/sbin/service sysmon stop &> /dev/null || : |
207 |
|
fi |
208 |
|
|
209 |
%post |
%post |
210 |
/sbin/e-smith/db configuration set sysmon service status enabled |
if [ $1 -ge 2 ]; then |
211 |
/sbin/e-smith/signal-event conf-sysmon |
mkdir -p /var/lib/rrd/backup |
212 |
/usr/bin/killall sysmon > /dev/null 2>&1 |
/bin/mv /var/lib/rrd/*.rrd /var/lib/rrd/backup/ &> /dev/null |
213 |
/usr/sbin/sysmon > /dev/null 2>&1 |
# FIXME: Fix for broken postun in previous versions (remove later) |
214 |
/etc/e-smith/events/actions/navigation-conf >/dev/null 2>&1 |
/sbin/service sysmon restart &> /dev/null || : |
215 |
cat << DONE |
fi |
216 |
|
|
217 |
* If you are upgrading from a previous version you must remove |
%preun |
218 |
all rrd files from /var/lib/rrd or graphs will not display |
if [ $1 -eq 0 ]; then |
219 |
correctly. |
/sbin/service sysmon stop &> /dev/null || : |
220 |
|
fi |
|
DONE |
|
221 |
|
|
222 |
%postun |
%postun |
223 |
/sbin/e-smith/db configuration delete sysmon |
if [ $1 -ge 1 ]; then |
224 |
/etc/e-smith/events/actions/navigation-conf >/dev/null 2>&1 |
/sbin/service sysmon restart &> /dev/null || : |
|
if ! [[ -e /usr/sbin/sysmon ]]; then |
|
|
/usr/bin/killall sysmon > /dev/null 2>&1; |
|
225 |
fi |
fi |
226 |
|
|
227 |
%files -f %{name}-%{version}-filelist |
%files -f %{name}-%{version}-filelist |