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