/[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.16 - (hide annotations) (download)
Wed Mar 29 20:26:56 2017 UTC (7 years, 2 months ago) by unnilennium
Branch: MAIN
CVS Tags: smeserver-yum-2_6_0-14_el7_sme
Changes since 1.15: +8 -2 lines
* Wed Mar 29 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-14.sme
- correct service names with plugin to avoid reboot [SME: 8705]
- code by stefano zamboni <zamboni@mind-at-work.it>

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

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