/[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.13 - (show annotations) (download)
Sun Nov 12 13:53:12 2023 UTC (5 months, 4 weeks ago) by jcrisp
Branch: MAIN
CVS Tags: smeserver-affa-4_0-1_el7_sme, HEAD
Changes since 1.12: +33 -23 lines
Import smeserver-affa-4

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

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