1 |
slords |
1.1 |
Summary: Mitel Server Integration for Arkeia Shareware Backup Program |
2 |
|
|
%define name smeserver-arkeia |
3 |
|
|
Name: %{name} |
4 |
|
|
%define version 1.0 |
5 |
|
|
%define release 8 |
6 |
|
|
Version: %{version} |
7 |
|
|
Release: %{release}%{?dist} |
8 |
|
|
License: GPL |
9 |
|
|
Group: System/Administratoin |
10 |
|
|
Source: %{name}-%{version}.tgz |
11 |
|
|
Patch1: smeserver-arkeia-1.0-noeject.patch |
12 |
|
|
Patch2: smeserver-arkeia-1.0-noeject.patch2 |
13 |
|
|
Patch3: smeserver-arkeia-1.0-configdb.patch |
14 |
|
|
Patch4: smeserver-arkeia-1.0-recycletape.patch |
15 |
|
|
Patch5: smeserver-arkeia-1.0-rotate.patch |
16 |
|
|
Patch6: smeserver-arkeia-1.0-configure.patch |
17 |
|
|
Patch7: smeserver-arkeia-1.0-rotate.patch2 |
18 |
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
19 |
|
|
BuildArchitectures: noarch |
20 |
|
|
Requires: e-smith-base e-smith-lib e-smith-release >= 7.0 arkeia-light >= 5.2.28 |
21 |
|
|
Requires: mtx |
22 |
|
|
BuildRequires: e-smith-devtools >= 1.13.1-03 |
23 |
|
|
Obsoletes: e-smith-arkeia |
24 |
|
|
Conflicts: e-smith-arkeia |
25 |
|
|
|
26 |
|
|
%description |
27 |
|
|
The System Monitor package let's you monitor a mitel server from the |
28 |
|
|
mitel server manager. Currently, you can monitor System Load, CPU Usage, |
29 |
|
|
Processes Running, CPU Run Queue Depth, Memory Used, Swap Used, Hard |
30 |
|
|
Drive Used, Hard Drive Free, Uptime, Latency to defined hosts/gateway, |
31 |
|
|
Ethernet Traffic. All the graphs are generated on demand. |
32 |
|
|
|
33 |
|
|
%changelog |
34 |
|
|
* Thu Jul 12 2007 Shad L. Lords <slords@mail.com> 1.0-8 |
35 |
|
|
- Fix date calculation in rotate script. |
36 |
|
|
|
37 |
|
|
* Fri Jul 6 2007 Shad L. Lords <slords@mail.com> 1.0-7 |
38 |
|
|
- Fix configure to ignore libraries. |
39 |
|
|
|
40 |
|
|
* Fri Jul 6 2007 Shad L. Lords <slords@mail.com> 1.0-6 |
41 |
|
|
- Add tape rotation script. |
42 |
|
|
|
43 |
|
|
* Sun Apr 29 2007 Shad L. Lords <slords@mail.com> |
44 |
|
|
- Clean up spec so package can be built by koji/plague |
45 |
|
|
|
46 |
|
|
* Mon Jan 29 2007 Shad L. Lords <slords@mail.com> 1.0-5 |
47 |
|
|
- Only recycle tape if backup type is tape. |
48 |
|
|
|
49 |
|
|
* Wed Jan 03 2007 Shad L. Lords <slords@mail.com> 1.0-4 |
50 |
|
|
- Convert to new ConfigDB style. |
51 |
|
|
|
52 |
|
|
* Wed Jan 03 2007 Shad L. Lords <slords@mail.com> 1.0-3 |
53 |
|
|
- Remove link to eject action. [SME: 795] |
54 |
|
|
|
55 |
|
|
* Wed Jan 03 2007 Shad L. Lords <slords@mail.com> 1.0-2 |
56 |
|
|
- Move eject fragment to e-smith-backup. [SME: 795] |
57 |
|
|
|
58 |
|
|
* Thu Dec 07 2006 Shad L. Lords <slords@mail.com> |
59 |
|
|
- Update to new release naming. No functional changes. |
60 |
|
|
- Make Packager generic |
61 |
|
|
|
62 |
|
|
* Sun Apr 09 2006 Shad L. Lords <slords@mail.com> |
63 |
|
|
- 1.0-01 |
64 |
|
|
- initial release |
65 |
|
|
|
66 |
|
|
%prep |
67 |
|
|
|
68 |
|
|
%setup |
69 |
|
|
%patch1 -p1 |
70 |
|
|
%patch2 -p1 |
71 |
|
|
%patch3 -p1 |
72 |
|
|
%patch4 -p1 |
73 |
|
|
%patch5 -p1 |
74 |
|
|
%patch6 -p1 |
75 |
|
|
%patch7 -p1 |
76 |
|
|
|
77 |
|
|
%build |
78 |
|
|
/usr/bin/perl createlinks |
79 |
|
|
|
80 |
|
|
%install |
81 |
|
|
/bin/rm -rf $RPM_BUILD_ROOT |
82 |
|
|
(cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT) |
83 |
|
|
/bin/rm -f %{name}-%{version}-filelist |
84 |
|
|
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
85 |
|
|
--dir /var/spool/squid 'attr(0755,squid,squid)' \ |
86 |
|
|
> %{name}-%{version}-filelist |
87 |
|
|
|
88 |
|
|
%files -f %{name}-%{version}-filelist |
89 |
|
|
%defattr(-,root,root) |
90 |
|
|
|
91 |
|
|
%clean |
92 |
|
|
rm -rf $RPM_BUILD_ROOT |
93 |
|
|
|