/[smecontribs]/rpms/smeserver-affa/contribs10/smeserver-affa.spec
ViewVC logotype

Contents of /rpms/smeserver-affa/contribs10/smeserver-affa.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.9 - (show annotations) (download)
Thu Jun 30 14:37:18 2022 UTC (22 months, 3 weeks ago) by jcrisp
Branch: MAIN
CVS Tags: smeserver-affa-3_3_1-7_el7_sme
Changes since 1.8: +8 -1 lines
* Thu Jun 30 2022 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-7
- Fix logging parse errors [SME:12084]
- Thanks to 'sti' for finding it

1 Summary: A rsync-based backup program for linux, adapted to Koozali SME server 10
2 %define name smeserver-affa
3 Name: %{name}
4 %define version 3.3.1
5 %define release 7
6 Version: %{version}
7 Release: %{release}%{?dist}
8 Vendor: Michael Weinberger <mweinber AT users DOT sourceforge DOT net> //// adaptation to sme-server Arnaud Guillaume <smeserver-affa AT guedel DOT eu>
9 License: GNU General Public License
10 Group: Applications/Archiving
11 Source: %{name}-%{version}.tar.gz
12 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
13 BuildArch: noarch
14 BuildRequires: e-smith-devtools
15
16 AutoReq: no
17
18 Requires: e-smith-release >= 10
19 Requires: smeserver-systemd-control
20 Requires: openssh-clients
21 Requires: perl-Config-IniFiles
22 Requires: perl-Filesys-DiskFree
23 Requires: perl-MailTools
24 Requires: perl-Proc-ProcessTable
25 Requires: perl-TimeDate
26 Requires: perl-List-MoreUtils
27 Requires: rsync
28
29 Patch1: smeserver-affa-add-some-systemd-support.patch
30 Patch2: smeserver-affa-change-host-domain.patch
31 Patch3: smeserver-affa-change_to_rsa_keys.patch
32 Patch4: smeserver-affa-update-ssh-keys-links.patch
33 Patch5: smeserver-affa-fix-config-directory-name-spaces.patch
34 Patch6: smeserver-affa-fix-reporting-error.patch
35
36 %description
37 Affa is a rsync-based backup program for SMEServer + RPMCheck + Watchdog + rise. Documentation: http://affa.sf.net
38
39 %prep
40 rm -rf $RPM_BUILD_ROOT
41
42 %setup -q -n %{name}-%{version}
43 %patch1 -p1
44 %patch2 -p1
45 %patch3 -p1
46 %patch4 -p1
47 %patch5 -p1
48 %patch6 -p1
49
50
51 %build
52 # perl createlinks << if required
53 find . \( -name .gitinclude -o -name .gitignore \) -print0 | \
54 xargs -0 rm -f
55
56 %install
57
58 /bin/rm -rf $RPM_BUILD_ROOT
59 (cd root ;/usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
60 /bin/rm -f %{name}-%{version}-filelist
61
62 # Set version String
63 cp -a $RPM_BUILD_ROOT/sbin/affa $RPM_BUILD_ROOT/sbin/affa.tmp
64 VERSIONSTRING=%{version}-`echo %{release}|sed -e 's/\..*$//'`
65 sed -e "s/my \$VERSION.*;/my \$VERSION='$VERSIONSTRING';/" < $RPM_BUILD_ROOT/sbin/affa.tmp > $RPM_BUILD_ROOT/sbin/affa
66 rm -f $RPM_BUILD_ROOT/sbin/affa.tmp
67
68 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
69 --ignoredir "/etc/sudoers.d" \
70 --ignoredir "/etc/profile.d" \
71 --file "/etc/profile.d/affa.sh" "attr(0555,root,root)" \
72 --file "/etc/sudoers.d/affa" "attr(0440,root,root)" \
73 > %{name}-%{version}-filelist
74
75 # We could use this for docs I guess - we should standardise this sort of thing
76 #%doc README LICENSE README
77 echo "%doc LICENSE COPYING README WARRANTY" >> %{name}-%{version}-filelist
78
79
80
81 %files -f %{name}-%{version}-filelist
82
83 %clean
84 rm -rf $RPM_BUILD_ROOT
85
86 %pre
87 exit 0
88
89 %post
90 exit 0
91
92 %preun
93 exit 0
94
95 %postun
96 exit 0
97
98 %changelog
99 * Thu Jun 30 2022 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-7
100 - Fix logging parse errors [SME:12084]
101 - Thanks to 'sti' for finding it
102
103 * Thu Jun 30 2022 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-6
104 - Fix error with files with spaces in names - Credit to Trevor Drake-Brockman [SME: 11784]
105 - Fix directory search - Credit to Trevor Drake-Brockman [SME: 11784]
106
107 * Wed Sep 22 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-5
108 - Modify ssh key links [SME: 10783]
109 - Untidy the ssh commands so I can see them and tidy them more easily
110
111 * Wed Sep 22 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-4
112 - Change ssh keys from DSA to RSA 4096 [SME: 10783]
113 - Fix missing /var/affa store dir
114
115 * Tue Sep 21 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-3.sme
116 - Fix some syntax errors. Migrate to using HostName/DomainName
117
118 * Tue Sep 21 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-2.sme
119 - Add some systemd support [SME: 11024]
120
121 * Mon Mar 29 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.1-1.sme
122 - Fix Warranty [SME: 11500]
123 - Fix Licence [SME: 11501]
124 - Remove atalk [SME: 11503]
125
126 * Tue Mar 23 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 3.3.0-1.sme
127 - New version for Koozali SME v10 [SME: 11024]
128 - incorporated old patches
129 - tidied up some old git files
130 - Very Alpha - see bug for details
131
132 * Mon Apr 10 2017 Arnaud Guillaume <smeserver-affa@guedel.eu> 3.2.2.3-8.sme
133 - Fix issue when multiple times are in an Affa configuration file, show-schedule only displays the last [SME: 10196]
134
135 * Wed Nov 23 2016 John Crisp <jcrisp@safeandsoundit.co.uk> 3.2.2.3-7.sme
136 - Fix find command error in delete imap dovecot files [SME: 9874]
137
138 * Fri Aug 19 2016 Arnaud Guillaume <smeserver-affa@guedel.eu> 3.2.2.3-6.sme
139 - Fix issue due to blank characters into file /etc/affa/job.conf [SME: 9449]
140
141 * Fri Aug 19 2016 John Crisp <jcrisp@safeandsoundit.co.uk> 3.2.2.3-5.sme
142 - Fix ssh port [SME: 8904]
143 - Modify changelog number to track define release number
144
145 * Wed Mar 23 2016 Arnaud Guillaume <smeserver-affa@guedel.eu> 3.2.2.3-4.sme
146 - Fix use of uninitialized value $1 in concatentation (.) or string at /sbin/affa/ line 4059 [SME: 9139]
147 - Fix "RPMCheck" not working [SME: 9270]
148 - Fix Inconsistent smb.conf when samba share option set to "yes" [SME: 9298]
149 - Fix affa --diskusage does not umount attached storage [SME: 9147]
150
151 * Mon Feb 29 2016 John Crisp <jcrisp@safeandsoundit.co.uk> 3.2.2.3-3.sme
152 - Fix typos in config files [SME: 9094]
153
154 * Tue Sep 22 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 3.2.2.3-2.sme
155 - Initial release to contribs9
156
157 * Tue Sep 22 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 3.2.2.3-1
158 - fixed column ExecTime shift
159 - Adjusted column indices in report
160 - Fixed typo in remoteHostName [SME: 9062]
161 - Code done by mats schuh <m.schuh@neckargeo.net>
162
163 * Tue Jan 13 2015 mats schuh <m.schuh@neckargeo.net> 3.2.2.2-1
164 - Added TotalBytesSent to archive reports and fixed report layout
165
166 * Sun Dec 07 2014 Arnaud Guillaume 3.2.2.2
167 - integration of the patch of Mats Schuh in order to enable check for external disk label before unmount
168 * Sat Aug 23 2014 Arnaud Guillaume 3.2.2.1
169 - adapted to the new release of rsync (bug by calculating the number and the size of the transfered files)
170 * Sat Apr 05 2014 Arnaud Guillaume 3.2.2.0
171 - first adaptation for sme server8
172 * Sun Mar 04 2012 Michael Weinberger 3.2.2
173 - Improved NRPE and sudoers config
174 - Fixed bug in DiskUsageRaw()
175 - Added NRPE command affa_diskusagenrpe
176 * Fri Mar 02 2012 Michael Weinberger 3.2.1
177 - Bugfix: command_prefix definiton was not added to /etc/nagios/affa-nrpe.cfg
178 * Thu Mar 01 2012 Michael Weinberger 3.2.0
179 - Bugfix: remoteRsyncBinary and localRsyncBinary was not used
180 * Sun Feb 26 2012 Michael Weinberger 3.1.7
181 - Bugfixes in showSchedule()
182 * Sun Feb 26 2012 Michael Weinberger 3.1.6
183 - added ICINGA/Nagios auto-configuration
184 * Fri Feb 24 2012 Michael Weinberger 3.1.4
185 - do not show Dedup interrupted in --status after the very first run
186 - improved --nrpe function
187 - added script yum_install_packages.sh
188 * Tue Oct 11 2011 Michael Weinberger 3.1.3
189 - MINOR IMPROVEMENTS
190 --send-key: mkdir of RemoteAuthorizedKeysFile. Avoid errors if dir does not exist
191 --log-tail: show last rotated if current log is empty or too short
192 --check-conncetions: allow jobs as arguments
193 * Mon Aug 29 2011 Michael Weinberger 3.1.2
194 - Bugfix: postJobCommand and postJobCommandRemote were not executed
195 * Sat Aug 13 2011 Michael Weinberger 3.1.1
196 - process state 'rsync interrupted' and 'dedup interrupted'
197 - --resume-interrupted
198 - resume interrupted jobs after server boot
199 * Sun Aug 07 2011 Michael Weinberger 3.1.0-1
200 - introduced status 'interrupted'(with --status)
201 * Fri Aug 05 2011 Michael Weinberger 3.1.0-0
202 - Release of 3.1.0
203 * Thu Aug 04 2011 Michael Weinberger 3.0.2-14
204 - de-duplicate, execPreJobCommand and execPostJobCommand only on scheduled run
205 - removed Command arg from sample scripts
206 - Fixed: Concatenated config in /tmp was world readable
207 - De-duplication info added to --show-schedule
208 * Tue Aug 02 2011 Michael Weinberger 3.0.2-6
209 - De-Duplication (freedup)
210 - De-Dup info in --status and --list-archives
211 - --status: only show enabled jobs. All with --all
212 - Fix: property globalStatus was not working
213 - Running state rsync or de-deduplicating display in --status
214 - Show de-deduplicating busy in --list-archives for scheduled.0
215 - new property dedupKill. When set no, --kill does not kill a job when de-duplicating
216 - new option --show-property
217
218 * Wed Jul 27 2011 Michael Weinberger 3.0.1-7
219 - Bug fixes: RemoteUser was not always used in ssh commands
220
221 * Sun Jul 24 2011 Michael Weinberger 3.0.1-6
222 - fixed bug in affa --status
223 - GlobalAffaConfig was mounted as Samba share
224 - call setupSamba() only in cronSetup()
225 - updated man
226
227 * Sat Jul 23 2011 Michael Weinberger 3.0.1-5
228 - new key NRPEtrigger
229 - full affa path required when starting re-run from cronjob
230 - improved deletion of shift out archives, --delete-job and --cleanup
231 - added --single-transaction to /etc/affa/scripts/mysql-dump-tables
232
233 * Wed Jul 20 2011 Michael Weinberger 3.0.0-0
234 - generic linux version made from Affa 2.0 (SME Version)
235
236 * Mon Apr 02 2007 Michael Weinberger
237 - bash version re-written in Perl
238

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed