/[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.7 - (hide annotations) (download)
Thu Aug 4 19:35:11 2016 UTC (7 years, 10 months ago) by stephdl
Branch: MAIN
CVS Tags: smeserver-yum-2_6_0-7_el7_sme
Changes since 1.6: +9 -2 lines
* Thu Aug 04 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-7.sme
- Rpm updates can be downloaded during the night [SME: 1502]
- Added smeserver-yum-2.6.0.bz1502.DownloadOnly.patch

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

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