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

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

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


Revision 1.22 - (show annotations) (download)
Wed Jan 23 23:29:32 2019 UTC (5 years, 4 months ago) by jpp
Branch: MAIN
Changes since 1.21: +2 -2 lines
* Wed Jan 23 2019 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-19.sme
- add yum-priority as requirement [SME: 6499]
  add support for plugin priority using property priority im yum_repositories db
  initial priority to 10 for sme*, base and updates repos.
  property yum priority set as enabled as default

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

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