/[smeserver]/rpms/smeserver-yum/sme10/smeserver-yum.spec
ViewVC logotype

Annotation of /rpms/smeserver-yum/sme10/smeserver-yum.spec

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


Revision 1.35 - (hide annotations) (download)
Fri Dec 6 03:34:00 2019 UTC (4 years, 6 months ago) by jpp
Branch: MAIN
Changes since 1.34: +6 -3 lines
* Wed Dec 04 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-23.sme
- implement yum-cron [SME: 10690]
  * use yum-cron for download only or auto update (TODO)
  * yum-cron templates  (TODO)
  * update lock path (TODO)
  * setting in server-manager (TODO)
- fix header detected as package [SME: 10843]
- avoid discrepancy between manager, cli and email [SME: 6940]
  * force refresh of metadata before db generation
  * add regeneration of db during check4updates, after yum update/install/remove
- fix no installed groups file [SME: 118]
- switch to centos vault after EOL [SME: 10249]
- update http://mirrorlist.contribs.org/mirrorlist to https://mirrorlist.koozali.org/mirrorlist [SME: 9697]
- make smecontribs visible [SME: 10716]

1 jpp 1.35 # $Id: smeserver-yum.spec,v 1.34 2019/12/06 03:27:30 jpp Exp $
2 stephdl 1.1
3     %define name smeserver-yum
4     Summary: YUM, an rpm updater
5     Name: %{name}
6     %define version 2.6.0
7 jpp 1.30 %define release 23
8 stephdl 1.1 Version: %{version}
9     Release: %{release}%{?dist}
10     License: GPL
11     Group: SMEServer/addon
12     Source: %{name}-%{version}.tar.xz
13 unnilennium 1.3 Patch0: smeserver-yum-2.6.0.SME10.patch
14 unnilennium 1.5 Patch1: smeserver-yum-2.6.0.SME10CentOS7EPEL7Keys.rpm
15 stephdl 1.6 Patch2: smeserver-yum-2.6.0.bz8834.DeltaRpm.patch
16 stephdl 1.7 Patch3: smeserver-yum-2.6.0.bz1502.DownloadOnly.patch
17 unnilennium 1.8 Patch4: smeserver-yum-2.6.0.bz9903.remiGPG.patch
18 stephdl 1.9 Patch5: smeserver-yum-2.6.0.bz8705.avoidReboot.patch
19 unnilennium 1.11 Patch6: smeserver-yum-2.6.0.bz10119.scloGPGkey.patch
20 unnilennium 1.12 Patch7: smeserver-yum-2.6.0.bz10156.remContrib.patch
21 unnilennium 1.14 Patch8: smeserver-yum-2.6.0.bz8705.avoidReboot-fixKeyError.patch
22 unnilennium 1.16 Patch9: smeserver-yum-2.6.0.bz8705.avoidReboot-service-names.patch
23 unnilennium 1.17 Patch10: smeserver-yum-2.6.0.bz8705.smeserver-locale.avoidreboot.patch
24 unnilennium 1.18 Patch11: smeserver-yum-2.6.0.bz10263.rpmfusionfreeEL7.patch
25 jpp 1.20 Patch12: smeserver-yum-2.6.0-bz10170-SME10eol.patch
26 jpp 1.21 Patch13: smeserver-yum-2.6.0.bz6499.yum-plugin-priorities.patch
27 jpp 1.23 Patch14: smeserver-yum-2.6.0.bz9388.no-double-contribs-check.patch
28 jpp 1.25 Patch15: smeserver-yum-2.6.0.bz8782-check4contribs-formatting.patch
29 jpp 1.26 Patch16: smeserver-yum-2.6.0.bz8705.avoidReboot-Nut-reboot-exclusions.patch
30 jpp 1.29 Patch17: smeserver-yum-2.6.0-bz10742-openfusion.patch
31 jpp 1.31 Patch18: smeserver-yum-2.6.0.bz10716.smecontribsvisible.patch
32     Patch19: smeserver-yum-2.6.0-bz9697.mirrorlist.patch
33 jpp 1.32 Patch20: smeserver-yum-2.6.0.bz10249.CentOSVault.onEOL.patch
34 jpp 1.33 Patch21: smeserver-yum-2.6.0.bz118.groupmark.patch
35 jpp 1.34 Patch22: smeserver-yum-2.6.0.bz6940.mismatch.btwn.manager.and.cli.patch
36 jpp 1.35 Patch23: smeserver-yum-2.6.0.bz10843.stripheader.patch
37 unnilennium 1.12
38 stephdl 1.1 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
39     BuildArchitectures: noarch
40     Requires: e-smith-formmagick >= 1.4.0-12
41     Requires: e-smith-base
42     Requires: perl(CGI::FormMagick) >= 0.91-26
43     Requires: rpm-python >= 4.0.4-7x.18
44     Requires: yum >= 1.0.3-1_73
45     Provides: yumconf
46     Obsoletes: check4updates
47     Provides: check4updates
48     Obsoletes: rpmdb-CentOS
49     Requires: yum-plugin-fastestmirror
50 jpp 1.21 Requires: yum-plugin-priorities
51 stephdl 1.1 Obsoletes: yum-plugin-installonlyn
52     Obsoletes: yum-protect-packages <= 1.1.16
53 unnilennium 1.19 Requires: yum-plugin-post-transaction-actions
54 stephdl 1.1 Requires: mailx
55 stephdl 1.6 Requires: deltarpm
56 jpp 1.30 Requires: yum-cron
57 stephdl 1.1 BuildRequires: e-smith-devtools >= 1.13.1-03
58 vip-ire 1.2 BuildRequires: python
59 stephdl 1.1 Conflicts: centos-yumconf
60     AutoReqProv: no
61     %description
62     %name is an implementation of http://linux.duke.edu/projects/yum on SME Server
63    
64 unnilennium 1.3 %prep
65     %setup
66     %patch0 -p1
67 unnilennium 1.5 %patch1 -p1
68 stephdl 1.6 %patch2 -p1
69 stephdl 1.7 %patch3 -p1
70 unnilennium 1.8 %patch4 -p1
71 stephdl 1.9 %patch5 -p1
72 unnilennium 1.11 %patch6 -p1
73 unnilennium 1.12 %patch7 -p1
74 unnilennium 1.14 %patch8 -p1
75 unnilennium 1.16 %patch9 -p1
76 unnilennium 1.17 %patch10 -p1
77 unnilennium 1.18 %patch11 -p1
78 jpp 1.20 %patch12 -p1
79 jpp 1.22 %patch13 -p1
80 jpp 1.23 %patch14 -p1
81 jpp 1.24 %patch15 -p1
82 jpp 1.26 %patch16 -p1
83 jpp 1.29 %patch17 -p1
84 jpp 1.30 %patch18 -p1
85 jpp 1.31 %patch19 -p1
86 jpp 1.32 %patch20 -p1
87 jpp 1.33 %patch21 -p1
88 jpp 1.34 %patch22 -p1
89 jpp 1.35 %patch23 -p1
90    
91 unnilennium 1.3
92     %build
93     perl createlinks
94     ln -s /var/service/yum root/service/yum
95     mkdir -p root/etc/yum.smerepos.d
96    
97     %install
98     /bin/rm -rf $RPM_BUILD_ROOT
99     (cd root ; /usr/bin/find . -depth -print | /bin/cpio -dump $RPM_BUILD_ROOT)
100     /bin/rm -f %{name}-%{version}-filelist
101     /sbin/e-smith/genfilelist \
102     --file '/sbin/e-smith/yum_update_dbs' 'attr(0700,root,root)' \
103     --file '/sbin/e-smith/yum' 'attr(0755,root,root)' \
104     --file '/sbin/e-smith/check4updates' 'attr(0755,root,root)' \
105     --file '/sbin/e-smith/check4contribsupdates' 'attr(0755,root,root)' \
106 stephdl 1.7 --file '/sbin/e-smith/yumdownloadonly' 'attr(0755,root,root)' \
107 unnilennium 1.3 --file '/etc/cron.daily/smeserver-yum' 'attr(0700,root,root)' \
108     --file /var/service/yum/down 'attr(0644,root,root)' \
109     --file /var/service/yum/run 'attr(0755,root,root)' \
110     --dir /var/service/yum/log 'attr(0755,root,root)' \
111     --dir /var/service/yum/log/supervise 'attr(0700,root,root)' \
112     --dir /var/service/yum/supervise 'attr(0700,root,root)' \
113     --file /var/service/yum/log/run 'attr(0755,root,root)' \
114     --dir /var/log/yum 'attr(2750,smelog,smelog)' \
115     $RPM_BUILD_ROOT > %{name}-%{version}-%{release}-filelist
116    
117     %clean
118     /bin/rm -rf $RPM_BUILD_ROOT
119    
120     %files -f %{name}-%{version}-%{release}-filelist
121    
122     %defattr(-,root,root)
123    
124    
125 stephdl 1.1 %changelog
126 jpp 1.30 * Wed Dec 04 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-23.sme
127 jpp 1.35 - implement yum-cron [SME: 10690]
128     * use yum-cron for download only or auto update (TODO)
129 jpp 1.30 * yum-cron templates (TODO)
130     * update lock path (TODO)
131     * setting in server-manager (TODO)
132 jpp 1.34 - fix header detected as package [SME: 10843]
133 jpp 1.30 - avoid discrepancy between manager, cli and email [SME: 6940]
134 jpp 1.34 * force refresh of metadata before db generation
135     * add regeneration of db during check4updates, after yum update/install/remove
136 jpp 1.33 - fix no installed groups file [SME: 118]
137 jpp 1.32 - switch to centos vault after EOL [SME: 10249]
138     - update http://mirrorlist.contribs.org/mirrorlist to https://mirrorlist.koozali.org/mirrorlist [SME: 9697]
139 jpp 1.30 - make smecontribs visible [SME: 10716]
140    
141 jpp 1.29 * Mon Feb 18 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-22.sme
142     - add openfusion gpg key [SME: 10742]
143    
144 jpp 1.28 * Sat Jan 26 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-21.sme
145 jpp 1.27 - updated EOL patch [SME: 10170]
146    
147 jpp 1.21 * Wed Jan 23 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-19.sme
148     - add yum-priority as requirement [SME: 6499]
149     add support for plugin priority using property priority im yum_repositories db
150     initial priority to 10 for sme*, base and updates repos.
151     property yum priority set as enabled as default
152 jpp 1.23 - avoid double check updates for contribs if smecontribs is set to enabled [SME: 9388]
153 jpp 1.24 - update check4contribs email format to match check4updates [SME: 8782]
154 jpp 1.26 - improve yum plugin to avoid reboot [SME: 8705]
155     add nut support, add exclusions for -doc, -devel... subpackages
156 jpp 1.21
157 jpp 1.20 * Tue Jan 22 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-18.sme
158     - add message to indicate EOL after Jun 30 2024 fix [SME: 10170]
159    
160 unnilennium 1.19 * Mon Nov 06 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-17.sme
161     - add yum-plugin-post-transaction-actions as requirement [SME: 1100]
162    
163 unnilennium 1.18 * Tue May 02 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-16.sme
164     - add rpmfusion free el7 RPM GPG KEY [SME: 10263]
165    
166 unnilennium 1.17 * Mon Apr 10 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-15.sme
167     - avoid reboot for smeserver-locale upgrade [SME: 8705]
168     - code by stefano zamboni <zamboni@mind-at-work.it>
169    
170 unnilennium 1.16 * Wed Mar 29 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme
171     - correct service names with plugin to avoid reboot [SME: 8705]
172     - code by stefano zamboni <zamboni@mind-at-work.it>
173    
174 unnilennium 1.14 * Mon Mar 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
175     - fix KeyError with plugin to avoid reboot [SME: 8705]
176 unnilennium 1.15 - code by stefano zamboni <zamboni@mind-at-work.it>
177 unnilennium 1.14
178 unnilennium 1.12 * Mon Mar 20 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-12.sme
179     - remove centos contrib repo [SME: 10156]
180    
181 unnilennium 1.11 * Sat Feb 25 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
182     - added centos SCLo SIG gpg rpm signing key [SME: 10119]
183     - will allow to install SCL packages directly from smecontribs
184    
185 stephdl 1.10 * Sat Feb 18 2017 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-10.sme
186 unnilennium 1.13 - Added smeserver-yum-2.6.0.bz8705.avoidReboot.patch [SME: 8705]
187 stephdl 1.9 - code by stefano zamboni <zamboni@mind-at-work.it>
188     - Avoid to reboot after the installation of a smeserver-* package
189    
190 unnilennium 1.8 * Fri Jan 06 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
191     - add Remi Collet RPM GPG KEY [SME: 9903]
192    
193 stephdl 1.7 * Thu Aug 04 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-7.sme
194     - Rpm updates can be downloaded during the night [SME: 1502]
195     - Added smeserver-yum-2.6.0.bz1502.DownloadOnly.patch
196    
197 stephdl 1.6 * Mon Aug 1 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-6.sme
198     - Deltarpm is now a setting in the yum panel (disabled by default)
199     - Added smeserver-yum-2.6.0.bz8834.DeltaRpm.patch [SME: 8834]
200    
201 unnilennium 1.5 * Fri May 27 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-5.sme
202     - adding Koozali SME10, EPEL7 and Centos7 gpg keys [SME: 9533]
203    
204 vip-ire 1.4 * Thu May 12 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-4.sme
205     - Rebuild [SME: 9393]
206    
207 unnilennium 1.3 * Wed Mar 23 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-3.sme
208     - yum points now to SME10 mirrors [SME: 9377]
209     - moved changelog at the end of file
210     - Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
211     by assuming the date is correct and changing the weekday.
212     Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
213     Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
214     Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
215    
216    
217 vip-ire 1.2 * Sun Feb 7 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-2.sme
218     - Add python to BuildReq so brp-python-bytecode compiles sme yum plugin
219     [SME: 9229]
220    
221 stephdl 1.1 * Sat Feb 06 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-1.sme
222     - Initial release to sme10
223    
224     * Wed Jan 13 2016 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-12.sme
225     - Example to update contribs 1 by 1 [SME: 8850]
226    
227     * Sat Feb 21 2015 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-11.sme
228     - Set the check update frequency of smecontribs through the server-manager
229     - [SME: 8855]
230    
231     * Sat Jan 10 2015 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-10.sme
232     - Add a default Yum db property for check4contribsupdates [SME: 8790]
233    
234     * Wed Nov 19 2014 Stephane de Labrusse <stephdl@de-labrusse.fr> 2.4.0-9.sme
235     - Added a check-update for the smecontribs repository [SME: 8672]
236    
237     * Mon Jun 30 2014 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-8.sme
238     - Move protected package list to the correct location [SME: 8476]
239    
240     * Fri Mar 22 2013 Ian Wells <esmith@wellsi.com> 2.4.0-7.sme
241     - Change order of mail options in check4updates [SME: 7504]
242    
243     * Sun Mar 17 2013 Ian Wells <esmith@wellsi.com> 2.4.0-6.sme
244     - Change wording of Software Update button [SME: 7499]
245    
246     * Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-5.sme
247     - Obsolete el5 yum-protect-packages, provided by yum [SME: 7273]
248    
249     * Wed Mar 6 2013 Shad L. Lords <slords@mail.com> 2.4.0-4.sme
250     - Update GPG keys for sme9 [SME: 7465]
251    
252     * Wed Feb 27 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-3.sme
253     - Add fasttrack and remove addons repo [SME: 7385]
254    
255     * Tue Feb 5 2013 Shad L. Lords <slords@mail.com> 2.4.0-2.sme
256     - Add back in missing parts from new stream [SME: 7305]
257    
258     * Thu Jan 31 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme
259     - Roll new stream for sme9
260    
261     * Fri Aug 31 2012 Shad L. Lords <slords@mail.com> 2.2.0-20.sme
262     - Point mirrorlist to mirrorlist.contribs.org [SME: 7087]
263    
264     * Tue Mar 1 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-19.sme
265     - Add random wait timer for check4updates script to distribute load on ibiblio [SME: 6534]
266    
267     * Fri Oct 1 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-18.sme
268     - Trigger post-upgrade and reboot on kernel updates [SME: 6166]
269    
270     * Sat Jun 12 2010 Shad L. Lords <slords@mail.com> 2.2.0-17.sme
271     - Fix migrate fragment to not throw warnings [SME: 5705]
272    
273     * Wed Jun 02 2010 Shad L. Lords <slords@mail.com> 2.2.0-16.sme
274     - Fix yum database removal (missing one) [SME: 5705]
275    
276     * Wed Jun 02 2010 Shad L. Lords <slords@mail.com> 2.2.0-15.sme
277     - Migrate MirrorList properties to sme8 repos [SME: 5705]
278     - Remove BaseURL properties if migrating to sme8 repos [SME: 5949]
279     - Remove yum databases and repodata if migrating to sme8 repos [SME: 5998]
280    
281     * Mon May 17 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-14.sme
282     - Revert previous change [SME: 5962]
283    
284     * Mon May 17 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-13.sme
285     - Migrate CentOS Exclude property default values to smeserver-yum [SME: 5962]
286    
287     * Thu Nov 5 2009 Shad L. Lords <slords@mail.com> 2.2.0-12.sme
288     - only unlink file if we created it [SME: 5476]
289    
290     * Wed Oct 14 2009 Filipo Carletti <filippo.carletti@gmail.com> 2.2.0-11.sme
291     - Import only keys not already imported [SME: 5507]
292    
293     * Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-10.sme
294     - set unsaved changes in yum event [SME: 5475]
295     - move yum warming to sme yum plugin [SME: 5474]
296     - ensure file exists before unlinking [SME: 5476]
297     - remove semicolons from yum plugin
298    
299     * Tue Sep 15 2009 Shad L. Lords <slords@mail.com> 2.2.0-9.sme
300     - Add frequency of updates toggle [SME: 3764]
301     - remove stray file
302    
303     * Sat May 30 2009 Shad L. Lords <slords@mail.com> 2.2.0-8.sme
304     - Add /etc/yum.smerepos.d to package [SME: 5305]
305    
306     * Mon May 18 2009 Shad L. Lords <slords@mail.com> 2.2.0-7.sme
307     - Change SME mirrorlists to point to ibiblio [SME: 5242]
308    
309     * Fri Apr 10 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-6.sme
310     - Require mailx [SME: 5131]
311    
312     * Mon Nov 24 2008 Shad L. Lords <slords@mail.com> 2.2.0-5.sme
313     - Add yum-protect-packages support to prevent removal of
314     needed pacakges [SME: 3133]
315    
316     * Tue Oct 28 2008 Shad L. Lords <slords@mail.com> 2.2.0-4.sme
317     - Make yum update unbuffered for web interface [SME: 4726]
318    
319     * Mon Oct 13 2008 Shad L. Lords <slords@mail.com> 2.2.0-3.sme
320     - Move repos to repodir to fix yum bug [SME: 3676]
321    
322     * Sun Oct 12 2008 Shad L. Lords <slords@mail.com> 2.2.0-2.sme
323     - Fix name for smeextras [SME: 4585]
324    
325     * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 2.2.0-1.sme
326     - Roll new stream to separate sme7/sme8 trees [SME: 4633]
327    
328     * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 1.2.0-58
329     - Fix mirrorlist for sme8 [SME: 4508]
330    
331     * Fri Sep 19 2008 Shad L. Lords <slords@mail.com> 1.2.0-57
332     - Add smeextras repo database and information [SME: 4585]
333    
334     * Sun Aug 10 2008 Shad L. Lords <slords@mail.com> 1.2.0-56
335     - Remove links to crontab in bootstrap-console-save [SME: 4494]
336    
337     * Sat Jul 5 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 1.2.0-55
338     - Add common <base> tags to e-smith-formmagick's general [SME: 4279]
339    
340     * Sun Apr 27 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 1.2.0-54
341     - Add common <base> tags to e-smith-formmagick's general [SME: 4290]
342    
343     * Mon Mar 31 2008 Shad L. Lords <slords@mail.com> 1.2.0-53
344     - Include installonlyn plugin to manage kernels [SME: 2101]
345    
346     * Mon Mar 31 2008 Stephen Noble <support@dungog.net> 1.2.0-52
347     - Delete dungog repository, reworked [SME: 4097]
348    
349     * Fri Mar 14 2008 Shad L. Lords <slords@mail.com> 1.2.0-51
350     - Clean up "rpm -qa" warnings in yum wrapper [SME: 4052]
351    
352     * Wed Feb 13 2008 Stephen Noble <support@dungog.net> 1.2.0-50
353     - Remove <base> tags now in general [SME: 3914]
354    
355     * Sun Feb 10 2008 Stephen Noble <support@dungog.net> 1.2.0-49
356     - Remove duplicate <base> entries [SME: 3889]
357    
358     * Fri Jan 11 2008 Shad L. Lords <slords@mail.com> 1.2.0-48
359     - Put check4updates obsoletes & provides in the right place [SME: 3250]
360    
361     * Fri Jan 11 2008 Shad L. Lords <slords@mail.com> 1.2.0-47
362     - Add check4update script, make cronjob run same as scheduled dirs [SME: 3250]
363    
364     * Wed Jan 09 2008 Stephen Noble <support@dungog.net> 1.2.0-46
365     - Add server is up to date message on panel [SME: 2512]
366    
367     * Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-45
368     - remove BaseURL property for repos with mirrorlists [SME: 3275]
369    
370     * Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-44
371     - safesymlink yum into local [SME: 3238]
372    
373     * Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-43
374     - add check4updates cronjob, obsolete check4updates rpm [SME: 3250]
375    
376     * Mon Jan 7 2008 Stephen Noble <support@dungog.net> 1.2.0-42
377     - yum-import-keys action to yum-update event [SME: 3196]
378    
379     * Mon Dec 24 2007 Stephen Noble <support@dungog.net> 1.2.0-41
380     - add smecontribs repo [SME: 3551]
381    
382     * Tue Dec 11 2007 Gavin Weight <gweight@gmail.com> 1.2.0-40
383     - Remove bad mirror and add two new mirrors. [SME: 3636]
384    
385     * Fri Nov 30 2007 Gavin Weight <gweight@gmail.com> 1.2.0-39
386     - Change EnableGroups value to no/yes instead of 0/1. [SME: 3607]
387    
388     * Fri Nov 30 2007 Gavin Weight <gweight@gmail.com> 1.2.0-38
389     - Fix use of uninitialized value in migrate 10GPG_and_Groups. [SME: 2491]
390    
391     * Sat Jul 14 2007 Shad L. Lords <slords@mail.com> 1.2.0-37
392     - Add GPG keys for CentOS 5 [SME: 3160]
393    
394     * Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-36
395     - Refine matching of rpms or repos [SME: 2416]
396    
397     * Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-35
398     - Add db values to restrict available rpms or repos [SME: 2416]
399    
400     * Sun Jun 10 2007 Stephen Noble <support@dungog.net> 1.2.0-34
401     - remove restrictAvailable patch [SME: 2416]
402    
403     * Fri Jun 08 2007 Stephen Noble <support@dungog.net> 1.2.0-33
404     - Add db value to restrict available rpms [SME: 2416]
405    
406     * Fri May 25 2007 Shad L. Lords <slords@mail.com> 1.2.0-32
407     - Add rpm key for epel packages
408    
409     * Wed May 9 2007 Shad L. Lords <slords@mail.com> 1.2.0-31
410     - Updates to support SME Server 8
411    
412     * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
413     - Clean up spec so package can be built by koji/plague
414    
415     * Mon Apr 09 2007 Stephen Noble <support@dungog.net> 1.2.0-30
416     - remove two of them, leaving pacific.net.au [SME: 2763]
417    
418     * Mon Apr 09 2007 Stephen Noble <support@dungog.net> 1.2.0-29
419     - add three more repositories to yum.repos.d/mirrors-sme* files [SME: 2763]
420    
421     * Fri Feb 16 2007 Shad L. Lords <slords@mail.com> 1.2.0-28
422     - Change runsvctrl to sv to support runit v1.7.x [SME: 2486]
423    
424     * Wed Jan 17 2007 Shad L. Lords <slords@mail.com> 1.2.0-27
425     - Only import keys we don't already have [SME: 1174]
426    
427     * Wed Jan 03 2007 Shad L. Lords <slords@mail.com> 1.2.0-26
428     - Only allow upstream proxies to cache packages not metadata.
429    
430     * Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
431     - Update to new release naming. No functional changes.
432     - Make Packager generic
433    
434     * Fri Dec 1 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-25
435     - Remove defaults for CentOS testing repository [SME: 2119]
436    
437     * Thu Nov 30 2006 Greg Swallow <greg@runlevel7.ca> 1.2.0-24
438     - Change Includepkgs to IncludePkgs [SME: 2049]
439    
440     * Thu Nov 30 2006 Greg Swallow <greg@runlevel7.ca> 1.2.0-23
441     - Add includepkgs option to repository configuration [SME: 2049]
442    
443     * Thu Nov 30 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-22
444     - Correct typos in last patch [SME: 2050]
445    
446     * Thu Nov 30 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-21
447     - Create local SME Server mirrorlists during build of package
448     - Refer to these mirrorlists from yum.conf
449     - Comment out baseurl if a MirrorList is defined [SME: 2050]
450    
451     * Wed Nov 29 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-20
452     - Revert to 10s panel refresh [SME: 2097]
453    
454 unnilennium 1.3 * Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-19
455     Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
456 stephdl 1.1 - Make CentOS base and updates enabled/Visible by default [SME: 1849]
457     - Migrate CentOS base and updates to Visible, but leave status [SME: 1849]
458    
459 unnilennium 1.3 * Thu Nov 23 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-18
460     Fri Nov 23 2006 --> Fri Nov 17 2006 or Thu Nov 23 2006 or Fri Nov 24 2006 or ....
461 stephdl 1.1 - Adjust wording on post-upgrade page [SME: 2076]
462    
463     * Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-17
464     - Clean up post-upgrade page LogFile display [SME: 2077]
465    
466     * Tue Nov 21 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-16
467     - Fix post-upgrade page handling [SME: 2077]
468     - TODO: Add persistent RebootRequired handling so that the reconfigure
469     page is displayed from other sessions
470     - TODO: Re-add display of LogFile prior to reconfigure
471    
472 unnilennium 1.3 * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-15
473     Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
474 stephdl 1.1 - Add dependency on yum-plugin-fastestmirror [SME: 1163]
475     - Alpha sort dependencies
476    
477 unnilennium 1.3 * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-14
478     Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
479 stephdl 1.1 - Add MirrorList options to each of the SME repos [SME: 1163]
480    
481 unnilennium 1.3 * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-13
482     Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
483 stephdl 1.1 - Put back missed patch for post-upgrade [SME: 2071]
484    
485 unnilennium 1.3 * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-12
486     Fri Nov 16 2006 --> Fri Nov 10 2006 or Thu Nov 16 2006 or Fri Nov 17 2006 or ....
487 stephdl 1.1 - Re-add post-upgrade handling [SME: 2071]
488     - Display yum output
489     - Lower refresh to 3 seconds from 10
490    
491     * Thu Nov 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-11
492     - Add Federico Simoncelli's smeserver plugin for yum [SME: 59]
493     - TODO: Add post-upgrade page handling
494    
495     * Tue Nov 14 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-10
496     - Add distroverpkg to set release version for CentOS packages [SME: 1163]
497    
498     * Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-09
499     - Allow MirrorList property to be optional [SME: 1163]
500    
501     * Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-08
502     - Add mirrorlist option to CentOS repos via MirrorList db property [SME: 1163]
503     - TODO: Create mirrorlist for SME repos.
504    
505     * Thu Nov 9 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-07
506     - Explicitly unset reposdir so we ignore the CentOS repo files [SME: 1905]
507    
508     * Fri Sep 1 2006 Charlie Brady <charlieb@e-smith.com> 1.2.0-06
509     - Fix quoting in yum wrapper script. [SME: 1894]
510    
511     * Mon May 1 2006 Charlie Brady <charlieb@e-smith.com> 1.2.0-05
512     - Remove stray yum.pm.orig file. [SME: 1350]
513    
514     * Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-04
515     - Also display yum output if the yum command fails, e.g. due to an
516     existing yum lock. [SME: 1110]
517    
518     * Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-03
519     - Update the yum dbs in yum-modify in case the repos have changed [SME: 1261]
520    
521     * Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.2.0-02
522     - Capture and display yum output [SME: 1269]
523    
524     * Wed Mar 15 2006 Charlie Brady <charlie_brady@mitel.com> 1.2.0-01
525     - Roll stable stream version. [SME: 1016]
526    
527 unnilennium 1.3 * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-26
528 stephdl 1.1 - And migrate old SME repo URLs to new paths [SME: 951]
529    
530 unnilennium 1.3 * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-25
531 stephdl 1.1 - Change SME Server repo URLs to match repo names so we avoid confusion
532     with CentOS repos and can remove the symlinks [SME: 951]
533    
534 unnilennium 1.3 * Mon Mar 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-24
535 stephdl 1.1 - Don't force the BaseURL properties - just set defaults [SME: 951]
536    
537     * Wed Feb 22 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-23
538     - Default smeupdates-testing repository to Visible, disabled [SME: 846]
539    
540     * Thu Feb 16 2006 Charlie Brady <charlie_brady@mitel.com> 1.1.2-22
541     - Do not suggest post-upgrade/reboot if no rpms were installed or
542     removed. [SME: 676]
543    
544     * Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-21
545     - Run post-upgrade and reboot in the background so that the front page
546     can be displayed without the "Your system needs to be rebooted"
547     warning - it's already getting one by then. [SME: 611]
548     - Adjust reconfiguration wording [SME: 611]
549    
550     * Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-20
551     - And add L10N for newly exposed unlocalised message [SME: 611]
552    
553     * Thu Feb 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-19
554     - Catch error return status from yum commands [SME: 611]
555    
556     * Tue Feb 7 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-18
557     - Adjust wording in yum wrapper [SME: 676]
558    
559     * Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-17
560     - And change "A reboot will be required" to
561     "A reboot will be initiated" in the post-upgrade panel [SME: 199]
562    
563     * Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-16
564     - Bring back post-upgrade page after performing updates [SME: 199]
565     - Force a reboot after the post-upgrade command [SME: 199]
566    
567     * Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-15
568     - Add wrapper /sbin/e-smith/yum to remind people to
569     post-upgrade/reboot [SME: 199]
570    
571     * Tue Jan 24 2006 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-14
572     - Force yum{AutoInstallUpdates} to disabled and remove toggle from
573     panel for now [SME: 525]
574    
575     * Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-13
576     - And make them Visible=no by default [SF: 1362528]
577    
578     * Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-12
579     - Disable centos base/updates/contrib repos by default [SF: 1362528]
580    
581     * Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-11
582     - Show repositories which are either Visible or enabled [SF: 1362529]
583    
584     * Mon Nov 21 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-10
585     - Disable automatic updates by default [SF: 1362526]
586    
587     * Mon Nov 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-09
588     - Add Conflicts: centos-yumconf [SF: 1356006]
589    
590     * Tue Nov 8 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-08
591     - Don't force a post-upgrade/reboot after changes. We don't need to
592     do it in most cases [SF: 1304387, 1349946]
593    
594     * Fri Oct 28 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-07
595     - Allow optional GPGKey property [SF: 1332624]
596    
597     * Fri Oct 28 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-06
598     - Change CentOS BaseURL values back to /centos/4 [SF: 1334861]
599     - Generate all repositories in /etc/yum.conf with enabled=0/1 [SF: 1332624]
600     - Only display "Visible" repositories in the server-manager panel [SF: 1332624]
601    
602     * Fri Oct 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-05
603     - Move all L10Ns to smeserver-locale [SF: 1309520]
604    
605     * Mon Oct 10 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-04
606     - Fix up auto-selection of all updates [SF: 1321887]
607    
608     * Mon Oct 10 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-03
609     - Remove navigation-conf-hidden [SF: 1315730]
610    
611     * Fri Oct 7 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-02
612     - Require GPG signatures on all yum packages
613    
614     * Fri Oct 7 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.2-01
615     - Roll new tarball, patches to 1.1.1-07
616    
617     * Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-07
618     - And another [SF: 1301044]
619    
620     * Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-06
621     - Correction to French L10N - Thanks Didier Rambeau [SF: 1301044]
622    
623     * Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-05
624     - Added Italian L10N - Thanks Filippo Carletti [SF: 1309266]
625    
626     * Fri Sep 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-04
627     - Added lots of RPM GPG keys [SF: 1309195]
628    
629     * Thu Sep 29 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-03
630     - It's obsoletes=1 [SF: 1306265]
631    
632     * Thu Sep 29 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-02
633     - Added obsoletes option to yum.conf [SF: 1306265]
634    
635     * Mon Sep 26 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.1-01
636     - Rolled patches up to 1.1.0-26
637     - Added German L10N
638    
639     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-26
640     - Typo fix - add space between 'yum' and options
641    
642     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-25
643     - Increase debug and error level so we at least capture yum output
644     in the messages log [SF: 1218082]
645    
646     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-24
647     - Need to return a hash, with key equal to package.arch [SF: 1298468]
648    
649     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-23
650     - Display version and repository in picklists [SF: 1298468]
651    
652     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-22
653     - Change 1/0 values for GPGCheck and EnableGroups to yes/no
654     It's more readable in the DB and also works around a bug [SF: 1303885]
655    
656     * Sun Sep 25 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-21
657     - Wrap HTML escapes in Fr lexicon in CDATA blocks [SF: 1302289]
658    
659     * Fri Sep 23 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-20
660     - Remove XXX - FIXMEs from French lexicon [SF: 1301044]
661    
662     * Fri Sep 23 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-19
663     - French L10N fix [SF: 1266152]
664    
665     * Mon Sep 12 2005 chris burnat <cburnat@burnat.com> 1.1.0-18
666     - Fix equal greater than (=>) to (>=) in two instances in spec file.
667    
668     * Mon Sep 5 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-17
669     - Change centos BaseURL entries from /centos/4/ to /centos/4.1/ as
670     it appears that some mirrors aren't following the symlinks correctly
671     - Move BaseURL settings into force fragments as they will need to
672     change as we update the base [SF: 1272438]
673    
674     * Wed Aug 24 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-16
675     - Remove XXX entries from panel text [SF: 1267315]
676    
677     * Wed Aug 24 2005 Gordon Rowell <gordonr@gormand.com.au> 1.1.0-15
678     - Fix status check in yum cron job - Thanks Filippo Carletti [SF: 1266967]
679    
680     * Wed Aug 17 2005 Charlie Brady <charlieb@e-smith.com> 1.1.0-14
681     - Change dependency to rpmdb-CentOS
682    
683     * Mon Aug 15 2005 Gordon Rowell <gordonr@gormand.com.au>
684     - [1.1.0-13]
685     - Add dependency on rpmdb package
686    
687     * Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au>
688     - [1.1.0-12]
689     - And remove now unused action scripts
690    
691     * Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au>
692     - [1.1.0-11]
693     - Removed the old pre-FM panels, which we haven't used or displayed for
694     a while
695    
696     * Mon Jul 18 2005 Gordon Rowell <gordonr@gormand.com.au>
697     - [1.1.0-10]
698     - Relocate dbs to /home/e-smith/db. Note yum_update_dbs avoids the
699     ConfigDB interface for speed and to reduce log noise. Maybe it
700     shouldn't, which would give a record of nightly changes.
701    
702     * Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au>
703     - [1.1.0-09]
704     - French localisation - Merci Didier Rambeau [SF: 1234929]
705    
706     * Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au>
707     - [1.1.0-08]
708     - Fix cron.daily ordering so yum_update_dbs gets a chance to fix
709     the yum flag file before the standard yum cron job runs [SF: 1237639]
710     - Clean up various old cron jobs which are no longer used
711     - Change cron job template into a shell script
712    
713     * Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au>
714     - [1.1.0-07]
715     - Remove pid file check - yum leaves stale pid files when an action
716     fails, but cleans up next time. Since we're calling yum, it can
717     do the work. Death to pid files.
718    
719     * Thu Jul 14 2005 Gordon Rowell <gordonr@gormand.com.au>
720     - [1.1.0-06]
721     - Adjusted repository names sme{addons,core,dev,test,updates} ->
722     addons,os,dev,test,updates
723     - Added updates-testing
724     - Changed BaseURL to use mirror.contribs.org/pub/smeserver for consistency
725     across mirrors
726     - Drop /7.0alpha/ to /7/
727    
728     * Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au>
729     - [1.1.0-05]
730     - Fix creation of event links
731    
732     * Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au>
733     - [1.1.0-04]
734     - Remove all other instances of services2adjust once for yum, and use
735     the action script instead to avoid an endless run of yum_update_dbs
736    
737     * Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au>
738     - [1.1.0-03]
739     - Add exec to yum service run script
740     - Add action script to update DBs as required, including 'local' event
741     - TODO: Work out why services2adjust 'once' loops forever on this service
742    
743     * Sat Jul 2 2005 Gordon Rowell <gordonr@gormand.com.au>
744     - [1.1.0-02]
745     - Add Provides: yumconf [SF: 1230970]
746     - Cater for new yum output format, and only pick package lines from
747     output [SF: 1230971]
748    
749     * Thu Jun 30 2005 Gordon Rowell <gordonr@gormand.com.au>
750     - [1.1.0-01gr22]
751     - Change from CentOS 3 to CentOS 4
752     - Remove force fragment for stunnel since we now ship the CentOS RPM
753    
754     * Fri Jun 10 2005 Gordon Rowell <gordonr@gormand.com.au>
755     - [1.1.0-01gr21]
756     - Import keys in bootstrap-console-save rather than post-{install,upgrade}
757    
758     * Fri Jun 10 2005 Gordon Rowell <gordonr@gormand.com.au>
759     - [1.1.0-01gr20]
760     - Populate /usr/share/rpm-gpg-keys with various RPM-GPG-KEY files
761     we might want to use
762     - Add script to import keys
763     - TODO: Clean out duplicate key copies
764    
765     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
766     - [1.1.0-01gr19]
767     - Comment out 'once' invocation in local event - it seems to loop
768     - Change cron job to do the 'runsvctrl once' invocation
769    
770     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
771     - [1.1.0-01gr18]
772     - Fix up exit status warning.
773    
774     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
775     - [1.1.0-01gr17]
776     - Don't bother checking the exit status of yum, since yum may
777     return non-zero for failure or for "no matching groups/packages".
778     TODO: We should probably work out how to tell between these.
779    
780     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
781     - [1.1.0-01gr16]
782     - Make it a supervised service, but one which we only run
783     "once" when we need it [SF: 1216096]
784    
785     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
786     - [1.1.0-01gr15]
787     - Don't try to grab the yum.pid file with Proc::PID_File as then
788     we can't actually run yum commands [SF: 1216097]
789    
790     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
791     - [1.1.0-01gr14]
792     - Add yum_update_dbs into a supervised service so we don't have
793     to wait for it at boot time [SF: 1216096]
794    
795     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
796     - [1.1.0-01gr13]
797     - Unlink tmp files if yum command fails and we exit early
798    
799     * Thu Jun 9 2005 Gordon Rowell <gordonr@gormand.com.au>
800     - [1.1.0-01gr12]
801     - Check for another running yum process [SF: 1216097]
802     - Don't update the databases if the yum command fails [SF: 1216097]
803    
804     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
805     - [1.1.0-01gr11]
806     - Use the dump RPM from CentOS [SF: 1214055]
807    
808     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
809     - [1.1.0-01gr10]
810     - Invert exit status of system()
811    
812     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
813     - [1.1.0-01gr09]
814     - Move management of /var/lock/subsys/yum into yum_updates_dbs action script
815     - Call yum_update_dbs in local event - after the system is up and running
816     - Remove commented out panel references
817    
818     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
819     - [1.1.0-01gr08]
820     - Default gpgcheck off, except for base/updates/smecore/smeupdates
821     - Default yum{AutoInstallUpdates} == enabled
822     - Add code to manage /var/lock/subsys/yum, which controls daily updates
823     in /etc/cron.daily/yum
824    
825     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
826     - [1.1.0-01gr07]
827     - Deal with the case when the list of updates is empty
828     - Put a header on each of the yum_* dbs
829    
830     * Fri Jun 3 2005 Gordon Rowell <gordonr@gormand.com.au>
831     - [1.1.0-01gr06]
832     - Rename centos repositories to match the centos-yumcache names
833     - Remove pkgpolicy=last and repository ordering.
834     - Add Exclude= properties to CentOS base and updates for packages which
835     are modified for the SMEServer releases
836     - INSTALL: Need to manually remove old version of yum_repositories DB
837    
838 unnilennium 1.3 * Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au>
839     Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
840 stephdl 1.1 - [1.1.0-01gr05]
841     - Add enable/disable repository support to configuration page
842    
843 unnilennium 1.3 * Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au>
844     Fri May 31 2005 --> Fri May 27 2005 or Tue May 31 2005 or Fri Jun 03 2005 or ....
845 stephdl 1.1 - [1.1.0-01gr04]
846     - Hide empty group/package select boxes
847    
848     * Tue May 31 2005 Gordon Rowell <gordonr@gormand.com.au>
849     - [1.1.0-01gr03]
850     - Change BaseURLs for smeserver repositories to ..../7.0alpha/ until we
851     add FollowSymlinks to httpd.conf
852    
853     * Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au>
854     - [1.1.0-01gr02]
855     - Add post-upgrade configuration page
856     - Hide Darrell's original panels
857     - Remove historical event directories
858     - TODO: Page for adding/deleting repositories
859     - TODO: yum-arch local repositories
860    
861     * Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au>
862     - [1.1.0-01gr01]
863     - Roll to 1.1.0
864    
865     * Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au>
866     - [1.0.0-04gr30]
867     - Call yum_update_dbs during the actions so the db state is correct
868    
869     * Fri May 27 2005 Gordon Rowell <gordonr@gormand.com.au>
870     - [1.0.0-04gr29]
871     - Create empty yum_{available,installed,updates} dbs in SPEC file
872     - Display the available repositories, and provide a select box
873     to allow them to be enabled/disabled.
874     - Add dependency on recent CGI::FormMagick so that the select options work
875    
876     * Thu May 26 2005 Gordon Rowell <gordonr@gormand.com.au>
877     - [1.0.0-04gr28]
878     - Introduce yum_repositories database and convert yum.conf template
879     - Introduce yum_repositories database and convert yum.conf template
880     - Set defaults, which can be overridden on a per-repository basis:
881     yum{EnableGroups}==0
882     yum{GPGCheck}==1
883    
884     * Sat May 21 2005 Gordon Rowell <gordonr@gormand.com.au>
885     - [1.0.0-04gr27]
886     - Add contrib group from CentOS and contribs.org repositories
887    
888     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
889     - [1.0.0-04gr26]
890     - Change configuration event to yum-modify since we need
891     yum-update for other purposes
892     - TODO: Need to update yum_* dbs after we perform an action
893     so the panel status matches reality. For speed, we should
894     probably delete the entries directly.
895     - TODO: Some yum comands take a long time, probably too long for
896     the manager.
897     - TODO: Capture the yum output
898    
899     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
900     - [1.0.0-04gr25]
901     - Fix CGI parameter passing
902    
903     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
904     - [1.0.0-04gr24]
905     - Add actions for install/remove/update
906     - TODO: groupremove needs to pull apart the group and remove
907     packages individually
908    
909     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
910     - [1.0.0-04gr23]
911     - Major cleanup of yum.pm, refactoring lots of code
912     - Note: Depends on CGI::FormMagick patch from [SF:1205448]
913    
914     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
915     - [1.0.0-04gr22]
916     - Changed yum{ShowPackages} to yum{PackageFunctions}
917     - Added enable/disable toggle to panel and fleshed out
918     change_settings() so that the settings are saved
919     - TODO: Actually signal-event yum-update
920    
921     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
922     - [1.0.0-04gr21]
923     - Change button labels for consistency
924     - TODO: Deal with degenerate case where no groups exist
925    
926     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
927     - [1.0.0-04gr20]
928     - Show groups in the panel
929     - Hide the ability to install/remove individual packages by default
930     - To enable, set yum{ShowPackages}=yes
931     - Add a tst group, courtesy of Greg Swallow
932    
933     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
934     - [1.0.0-04gr19]
935     - List available/installed/updates for yum groups as well
936     - Create yum_installed db and use that instead of /var/log/rpmpkgs
937     for orthogonality. We also update all three DBs with one action.
938    
939     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
940     - [1.0.0-04gr18]
941     - enablegroups for smeserver, but disable them for centos
942    
943     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
944     - [1.0.0-04gr17]
945     - For consistency, sort extras before os as well
946    
947     * Fri May 20 2005 Gordon Rowell <gordonr@gormand.com.au>
948     - [1.0.0-04gr16]
949     - Set pkgpolicy=last, put centos groups before smeserver groups, and
950     ensure that the group labels are sortable
951    
952     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
953     - [1.0.0-04gr15]
954     - Comment out the smeserver parts of yum.conf for now
955    
956     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
957     - [1.0.0-04gr14]
958     - Fill in removable packages from /var/log/rpmpkgs, updated nightly
959     by a cronjob in the rpm package.
960     TODO: We should probably run the cron job just before displaying
961     this panel
962    
963     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
964     - [1.0.0-04gr13]
965     - Rough in install/remove pages
966    
967     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
968     - [1.0.0-04gr12]
969     - Add configuration page to panel
970    
971     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
972     - [1.0.0-04gr11]
973     - Fix up conf-yum and /etc/yum.conf links
974    
975     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
976     - [1.0.0-04gr10]
977     - Clean up daily cronjobs, and check whether yum is enabled in each of them
978     - Remove /var/service/yum - we don't need to run all the time
979     - Make use of new templates.metadata to remove conf-yum script entirely
980    
981     * Thu May 19 2005 Gordon Rowell <gordonr@gormand.com.au>
982     - [1.0.0-04gr09]
983     - Rewrite yum.conf templates to depend on:
984     sysconfig{ReleaseVersion}
985     sysconfig{BaseDistro}
986     sysconfig{BaseDistroVersion}
987    
988     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
989     - [1.0.0-04gr08]
990     - Initial FormMagick panel using new databases
991    
992     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
993     - [1.0.0-04gr07]
994     - And put yum_update_dbs in the right directory...
995    
996     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
997     - [1.0.0-04gr06]
998     - Add /sbin/e-smith/yum_update_dbs
999    
1000     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
1001     - [1.0.0-04gr05]
1002     - Change db names and fix yum list updates command
1003    
1004     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
1005     - [1.0.0-04gr04]
1006     - Generate esmith::DB files from the yum output, as it's so much
1007     easier to deal with them later in panels, etc.
1008    
1009     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
1010     - [1.0.0-04gr03]
1011     - Change output path of yum list commands
1012    
1013     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
1014     - [1.0.0-04gr02]
1015     - Fix up init.d/supervise/yum symlink
1016     - Create /service symlink
1017     - Ensure correct permissions on supervise bits and pieces
1018    
1019     * Fri May 13 2005 Gordon Rowell <gordonr@gormand.com.au>
1020     - [1.0.0-04gr01]
1021     - Change default type for yum to service
1022     - Add yum{status}==enabled
1023     - Create /var/log/yum in build
1024     - Add yum service directory and startup
1025    
1026     * Mon Mar 01 2004 Darrell May <dmay@myezserver.com>
1027     - [1.0.0-03dmay]
1028     - bugfix to yum-config missing db set {Arch,Check}Repository
1029     * Sun Feb 29 2004 Darrell May <dmay@myezserver.com>
1030    
1031     - [1.0.0-02dmay]
1032     - major updates to yum panels, templates
1033     * Sun Feb 08 2004 Darrell May <dmay@myezserver.com>
1034    
1035     - [1.0.0-01_beta]
1036     - initial beta release
1037     - added yum-remove panel
1038     - updated all panels, events, actions
1039     * Sat Feb 07 2004 Darrell May <dmay@myezserver.com>
1040    
1041     - [0.0.1a-09]
1042     - added yum-post panel
1043     - updated yum-{update,available} panels
1044     - updated yum-install-{available,update} events & actions
1045    
1046     * Tue Feb 03 2004 Darrell May <dmay@myezserver.com>
1047     - [0.0.1a-08]
1048     - added pre-alpha yum-{update,available} panels
1049     - renamed all panels yum-panelname
1050    
1051     * Mon Feb 02 2004 Darrell May <dmay@myezserver.com>
1052     - [0.0.1a-07]
1053     - updated yum-check-repository template and action to accept --nomail commandline option
1054     - updated yumcheck panel to issue --nomail commandline option
1055    
1056     * Sun Feb 01 2004 Darrell May <dmay@myezserver.com>
1057     - [0.0.1a-06]
1058     - added yumcheck server-manager panel
1059     - updated cron.daily/yum-check-repository template
1060     - change log file name to yum-check-repository.log
1061    
1062     * Sat Jan 31 2004 Darrell May <dmay@myezserver.com>
1063     - [0.0.1a-05]
1064     - added yumconfig server-manager panel
1065     - added yum-post-{install,remove} events
1066     - added navigation-conf-hidden action
1067    
1068     * Mon Jan 26 2004 Darrell May <dmay@myezserver.com>
1069     - [0.0.1a-04]
1070     - moved cron.hourly actions to cron.daily
1071     - added yum-update event
1072     - added yum-arch-repository yum-check-repository actions
1073     - added yum-install-updates yum-install-available actions
1074     - removed %post entries, created db defaults
1075    
1076     * Sun Jan 25 2004 Darrell May <dmay@myezserver.com>
1077     - [0.0.1a-03]
1078     - yum-check-repository, changed to run 'yum list'
1079     - yum-arch-repository, added support for multiple archive repositories
1080    
1081     * Sat Jan 24 2004 Darrell May <dmay@myezserver.com>
1082     - [0.0.1a-02]
1083     - fix db typo UpdateURL to UpdatesUrl
1084     - added cron.hourly/yum-check-repository & yum-arch-repository
1085     - updated actions/conf-yum
1086    
1087     * Thu Jan 22 2004 Darrell May <dmay@myezserver.com>
1088     - [0.0.1a-01]
1089     - Original version

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