/[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.8 - (hide annotations) (download)
Fri Jan 6 23:25:40 2017 UTC (7 years, 4 months ago) by unnilennium
Branch: MAIN
CVS Tags: smeserver-yum-2_6_0-8_el7_sme
Changes since 1.7: +7 -2 lines
* Fri Jan 06 2017 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
- add Remi Collet RPM GPG KEY [SME: 9903]

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

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