/[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.15 - (hide annotations) (download)
Mon Mar 27 21:40:56 2017 UTC (7 years, 2 months ago) by unnilennium
Branch: MAIN
CVS Tags: smeserver-yum-2_6_0-13_el7_sme
Changes since 1.14: +2 -1 lines
* Mon Mar 27 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
- fix KeyError with plugin to avoid reboot [SME: 8705]
- code by stefano zamboni <zamboni@mind-at-work.it>

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

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