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

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

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


Revision 1.9 - (show annotations) (download)
Mon Mar 14 02:34:45 2022 UTC (2 years, 3 months ago) by jpp
Branch: MAIN
Changes since 1.8: +2 -1 lines
* Sun Mar 13 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-4.sme
- fix typo in socket, seen with phpmyadmin [SME: 11899]
- fix permissions for mariadb105 [SME: 11899]

1 Summary: Koozali SME Server specific mysql configuration and templates.
2 %define name smeserver-mysql
3 Name: %{name}
4 %define version 2.7.0
5 %define release 4
6 Version: %{version}
7 Release: %{release}%{?dist}
8 License: GPL
9 Group: Networking/Daemons
10 Source: %{name}-%{version}.tar.xz
11 Patch0: smeserver-mysql-2.7.0-bz11899-sclo.patch
12
13 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
14 BuildArchitectures: noarch
15 Requires: mariadb-server
16 Requires: mariadb
17 Requires: e-smith-base
18 Requires: e-smith-lib >= 1.15.1-19
19 Provides: e-smith-mysql = 2.7.0
20 Obsoletes: e-smith-mysql < 2.7.0
21 BuildRequires: e-smith-devtools >= 1.13.1-03
22 AutoReqProv: no
23
24 %description
25 This package adds necessary startup and configuration items for
26 mysql.
27
28
29 %prep
30 %setup
31 %patch0 -p1
32
33 %build
34 for ver in 101 102 103 105
35 do
36 mkdir root$ver
37 done
38 perl createlinks
39
40 #########################################
41 # full job to create all needed version
42 #########################################
43 declare -A versions=([101]="10.1" [102]="10.2" [103]="10.3" [105]="10.5")
44 declare -A ports=([101]="3310" [102]="3311" [103]="3312" [105]="3313")
45
46 for ver in 101 102 103 105
47 do
48 ##TODO seen those
49
50 # default values from /etc/opt/rh/rh-mariadb101/my.cnf.d/mariadb-server.cnf
51 basedir="/opt/rh/rh-mariadb$ver/root/usr"
52 datadir="/var/opt/rh/rh-mariadb$ver/lib/mysql"
53 socket="/var/lib/mysql/mariadb$ver.sock"
54 logerror="/var//log/mariadb$ver/mariadb.log"
55 #"/var/opt/rh/rh-mariadb$ver/log/mariadb/mariadb.log"
56 pidfile="/var/run/rh-mariadb$ver-mariadb/mariadb.pid"
57 vers="${versions[$ver]}"
58 port="${ports[$ver]}"
59
60 # we could choose to override /etc/opt/rh/rh-mariadb101/my.cnf or to force to share /etc/mariadb.log
61
62 ##Folders
63 mkdir -p root$ver/etc/e-smith/sql/init$ver
64 mkdir -p root$ver/home/e-smith/db/mariadb$ver
65 mkdir -p root$ver/var/log/mariadb$ver
66 mkdir -p root$ver/home/e-smith/db/mysql/mariadb$ver
67 mkdir -p root$ver/etc/e-smith/events/actions
68
69 # create configuration db default
70 #rm -rf etc/e-smith/db/configuration
71 mkdir -p root$ver/etc/e-smith/db/configuration/{defaults/mariadb$ver-mariadb,defaults/mariadb$ver-mysql.init,migrate}
72 echo "yes" > root$ver/etc/e-smith/db/configuration/defaults/mariadb$ver-mariadb/LocalNetworkingOnly
73 echo "enabled" > root$ver/etc/e-smith/db/configuration/defaults/mariadb$ver-mariadb/status
74 echo "service" > root$ver/etc/e-smith/db/configuration/defaults/mariadb$ver-mariadb/type
75 echo "enabled" > root$ver/etc/e-smith/db/configuration/defaults/mariadb$ver-mysql.init/status
76 echo "service" > root$ver/etc/e-smith/db/configuration/defaults/mariadb$ver-mysql.init/type
77
78 # create templates.metadata
79 ## for /etc/e-smith/templates/etc/my.cnf/ => /etc/opt/rh/rh-mariadb$ver/my.cnf
80 mkdir -p root$ver/etc/e-smith/templates.metadata/etc/opt/rh/rh-mariadb$ver
81 echo 'TEMPLATE_PATH="/etc/my.cnf"' > root$ver/etc/e-smith/templates.metadata/etc/opt/rh/rh-mariadb$ver/my.cnf
82
83 # rename/move files
84
85 #TODO /etc/e-smith/events
86 mv root/etc/e-smith/events/smeserver-mariadb$ver-update root$ver/etc/e-smith/events/
87 #bootstrap-console-save templates + actions
88 mkdir -p root$ver/etc/e-smith/events/bootstrap-console-save/templates2expand/etc/e-smith/sql/
89 mkdir -p root$ver/etc/e-smith/events/bootstrap-console-save/templates2expand/etc/opt/rh
90 mv root/etc/e-smith/events/bootstrap-console-save/S40mariadb$ver-load-tables root$ver/etc/e-smith/events/bootstrap-console-save/
91 mv root/etc/e-smith/events/bootstrap-console-save/templates2expand/etc/e-smith/sql/init$ver root$ver/etc/e-smith/events/bootstrap-console-save//templates2expand/etc/e-smith/sql/
92 mv root/etc/e-smith/events/bootstrap-console-save/templates2expand/etc/opt/rh/rh-mariadb$ver root$ver/etc/e-smith/events/bootstrap-console-save//templates2expand/etc/opt/rh/
93 #pre-backup actions
94 mkdir -p root$ver/etc/e-smith/events/pre-backup
95 mv root/etc/e-smith/events/pre-backup/S*mariadb$ver-* root$ver/etc/e-smith/events/pre-backup/
96 #post-backup actions
97 mkdir -p root$ver/etc/e-smith/events/post-backup
98 mv root/etc/e-smith/events/post-backup/S*mariadb$ver-* root$ver/etc/e-smith/events/post-backup/
99 #pre-restore actions + service
100 mkdir -p root$ver/etc/e-smith/events/pre-restore
101 mv root/etc/e-smith/events/pre-restore/S*mariadb$ver-* root$ver/etc/e-smith/events/pre-restore/
102 #timezone-update service
103
104
105 #/etc/e-smith/events/actions
106 #TODO
107 cp rootscl/etc/e-smith/events/actions/mariadb_VER_-delete-db-files root$ver/etc/e-smith/events/actions/mariadb${ver}-delete-db-files
108 cp rootscl/etc/e-smith/events/actions/mariadb_VER_-delete-dumped-tables root$ver/etc/e-smith/events/actions/mariadb${ver}-delete-dumped-tables
109 cp rootscl/etc/e-smith/events/actions/mariadb_VER_-dump-tables root$ver/etc/e-smith/events/actions/mariadb${ver}-dump-tables
110 cp rootscl/etc/e-smith/events/actions/mariadb_VER_-load-tables root$ver/etc/e-smith/events/actions/mariadb${ver}-load-tables
111 sed -i root$ver/etc/e-smith/events/actions/mariadb${ver}-delete-db-files \
112 -i root$ver/etc/e-smith/events/actions/mariadb${ver}-delete-dumped-tables \
113 -i root$ver/etc/e-smith/events/actions/mariadb${ver}-dump-tables \
114 -i root$ver/etc/e-smith/events/actions/mariadb${ver}-load-tables \
115 -e "s_!!!VER!!!_${ver}_g"
116
117 ##metadata
118 mkdir -p root$ver/etc/e-smith/templates.metadata/etc/e-smith/
119 cp -a root/etc/e-smith/templates.metadata/etc/e-smith/sql root$ver/etc/e-smith/templates.metadata/etc/e-smith/sql$ver
120
121
122 ##templates
123 mkdir -p root$ver/etc/e-smith/templates/etc/e-smith/sql/init$ver
124 cp root/etc/e-smith/templates/etc/e-smith/sql/init/* root$ver/etc/e-smith/templates/etc/e-smith/sql/init$ver
125 sed -i root$ver/etc/e-smith/templates/etc/e-smith/sql/init$ver/00_restore_dumped_dbs -i root$ver/etc/e-smith/templates/etc/e-smith/sql/init$ver/10mysql_upgrade \
126 -e "s_e-smith/db/mysql_e-smith/db/mariadb${ver}_g" \
127 -e "s_/usr/bin/mysql_/opt/rh/rh-mariadb${ver}/root/usr/bin/mysql_g" \
128 -e "s_mariadb.service_rh-mariadb$ver-mariadb.service_" \
129 -e "s_/var/run/mariadb/mariadb.pid_${pidfile}_g" \
130 -e "s_mysqld_rh-mariadb$ver-mariadb_g" \
131 -e "s_| mysql |_| /opt/rh/rh-mariadb${ver}/root/usr/bin/mysql --socket=$socket |_g" \
132 -e "s_mysql\_upgrade_mysql\_upgrade --socket=$socket _g"
133 mkdir -p root$ver/etc/e-smith/templates/etc/my.cnf
134 echo "
135 [mariadb-$vers]" > root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-05mariadb
136 echo "basedir=$basedir" > root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-07basedir
137 echo "datadir=$datadir" > root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-08datadir
138 cp -a root/etc/e-smith/templates/etc/my.cnf/009socket root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-09socket
139 sed -i root$ver/etc/e-smith/templates/etc/my.cnf/$ver-09socket \
140 -e "s_mariadb_{'mariadb${ver}\-mariadb'}_" \
141 -e "s_^socket.*_socket=${socket}_"
142 cp rootscl/etc/e-smith/templates/etc/my.conf/_VER_-10port root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-10port
143 sed -i root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-10port \
144 -e "s_!!!VER!!!_${ver}_g" \
145 -e "s_!!!PORT!!!_${port}_g"
146
147 cp -a root/etc/e-smith/templates/etc/my.cnf/014server_system_variables root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-14server_system_variables
148 sed -i root$ver/etc/e-smith/templates/etc/my.cnf/$ver-14server_system_variables \
149 -e "s_mariadb_mariadb${ver}\-mariadb_"
150 cp -a root/etc/e-smith/templates/etc/my.cnf/015logerror root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-15logerror
151 sed -i root$ver/etc/e-smith/templates/etc/my.cnf/${ver}-15logerror \
152 -e "s_^log\_error.*_log\_error=${logerror}_"
153
154 ## /sbin/e-smith
155 mkdir -p root$ver/sbin/e-smith/systemd
156 #!!!VER!!!
157 cp rootscl/sbin/e-smith/systemd/mariadb_VER_-initialize root$ver/sbin/e-smith/systemd/mariadb${ver}-initialize
158 cp rootscl/sbin/e-smith/systemd/mariadb_VER_-mysql.init root$ver/sbin/e-smith/systemd/mariadb${ver}-mysql.init
159 cp rootscl/sbin/e-smith/mariadb_VER_-preload root$ver/sbin/e-smith/mariadb${ver}-preload
160 sed -i root$ver/sbin/e-smith/systemd/mariadb${ver}-initialize -i root$ver/sbin/e-smith/systemd/mariadb${ver}-mysql.init \
161 -i root$ver/sbin/e-smith/mariadb${ver}-preload \
162 -e "s_!!!VER!!!_${ver}_g" \
163 -e "s_!!!SOCKET!!!_$socket _g"
164
165 ## logrotate
166 mkdir -p root$ver/etc/logrotate.d/
167 sed rootscl/etc/logrotate.d/mariadb_VER_ -e "s_!!!VER!!!_${ver}_g" \
168 -e "s_!!!SOCKET!!!_${socket}_g" > root$ver/etc/logrotate.d/mariadb${ver}
169
170
171 #systemd service
172 mkdir -p root$ver/usr/lib/systemd/system/
173 ### the upstream service is called rh-mariadb$ver-mariadb.service
174 # we use our own /usr/lib/systemd/system/mariadb$ver-mariadb
175 cp rootscl/usr/lib/systemd/system/mariadb_VER_-mariadb.service root$ver/usr/lib/systemd/system/mariadb${ver}-mariadb.service
176 cp rootscl/usr/lib/systemd/system/mariadb_VER_-mysql.init.service root$ver/usr/lib/systemd/system/mariadb${ver}-mysql.init.service
177 sed -i root$ver/usr/lib/systemd/system/mariadb${ver}-mariadb.service -i root$ver/usr/lib/systemd/system/mariadb${ver}-mysql.init.service \
178 -e "s_!!!VER!!!_${ver}_g"
179 if [ $ver -ge 102 ]
180 then
181 sed -i root$ver/usr/lib/systemd/system/mariadb${ver}-mariadb.service \
182 -e "s/_safe//";
183 fi
184
185 #### TODO check it is similar to rh one and functional !
186
187 #/usb/bin to ease user
188 mkdir root$ver/usr/bin
189 for i in mysql mysqlshow mysqladmin mysqldump mysqlimport mysqlbinlog
190 do
191 echo "/opt/rh/rh-mariadb${ver}/root/usr/bin/$i --socket=/var/lib/mysql/maradb${ver}.sock \"\$@\"" >root$ver/usr/bin/$i${ver}
192 done
193
194 #phpMyAdmin template
195 mkdir -p root$ver/etc/e-smith/templates/etc/phpMyAdmin/config.inc.php/
196 sed rootscl/etc/e-smith/templates/etc/phpMyAdmin/config.inc.php/11configMysql_VER_ \
197 -e "s_!!!SOCKET!!!_$socket _g" \
198 -e "s_!!!VER!!!_${ver}_g" > root$ver/etc/e-smith/templates/etc/phpMyAdmin/config.inc.php/11configMysql${ver}
199
200 done
201
202 ###################################################
203 # end of per version generation
204 ##################################################
205
206
207 %install
208 rm -rf $RPM_BUILD_ROOT
209 (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
210 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
211 --file "/sbin/e-smith/systemd/mariadb-initialize" 'attr(0554,root,root)' \
212 --file "/sbin/e-smith/systemd/mysql.init" 'attr(0554,root,root)' \
213 --dir '/home/e-smith/db/mysql' 'attr(0750,root,root)' \
214 --dir "/var/log/mariadb" 'attr(0750,mysql,mysql)' \
215 > %{name}-%{version}-filelist
216 echo "%doc COPYING" >> %{name}-%{version}-filelist
217
218 for ver in 101 102 103 105
219 do
220 #rm -rf $RPM_BUILD_ROOT
221 (cd root$ver ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
222 /sbin/e-smith/genfilelist root$ver/ \
223 --file "/sbin/e-smith/systemd/mariadb$ver-initialize" 'attr(0554,root,root)' \
224 --file "/sbin/e-smith/systemd/mariadb$ver-mysql.init" 'attr(0554,root,root)' \
225 --dir "/home/e-smith/db/mariadb$ver" 'attr(0750,root,root)' \
226 --dir "/var/log/mariadb$ver" 'attr(0750,mysql,mysql)' \
227 --file "/usr/bin/mysql$ver" 'attr(0554,root,root)' \
228 --file "/usr/bin/mysqladmin$ver" 'attr(0554,root,root)' \
229 --file "/usr/bin/mysqlbinlog$ver" 'attr(0554,root,root)' \
230 --file "/usr/bin/mysqldump$ver" 'attr(0554,root,root)' \
231 --file "/usr/bin/mysqlimport$ver" 'attr(0554,root,root)' \
232 --file "/usr/bin/mysqlshow$ver" 'attr(0554,root,root)' \
233 | grep -vE '/home/e-smith/db/mysql$' \
234 > %{name}-%{version}-filelist-mariadb$ver
235 echo "%doc COPYING" >> %{name}-%{version}-filelist-mariadb$ver
236 done
237
238
239 %clean
240 rm -rf $RPM_BUILD_ROOT
241
242 %pre
243 if [ $1 -gt 1 ] ; then
244 if [ -e /var/service/mariadb/run ] ; then
245 /usr/bin/sv d mariadb
246 /usr/bin/sv d mariadb/log
247 fi
248 fi
249
250 %post
251
252 %postun
253
254 %files -f %{name}-%{version}-filelist
255 %defattr(-,root,root)
256
257 #----------------------------------------------------
258 %package -n smeserver-mariadb101
259 Summary: Koozali SME Server mariadb 10.1
260 Group: Database
261 Requires: rh-mariadb101
262 Requires: rh-mariadb101-mariadb
263 Requires: rh-mariadb101-mariadb-server
264 BuildRequires: e-smith-devtools >= 1.13.1-03
265
266 %description -n smeserver-mariadb101
267 Koozali SME Server configuration package for mariadb101 RH SCLo
268
269 %files -n smeserver-mariadb101 -f %{name}-%{version}-filelist-mariadb101
270 %defattr(-,root,root)
271
272 #----------------------------------------------------
273 %package -n smeserver-mariadb102
274 Summary: Koozali SME Server mariadb 10.2
275 Group: Database
276 Requires: rh-mariadb102
277 Requires: rh-mariadb102-mariadb
278 Requires: rh-mariadb102-mariadb-server
279 BuildRequires: e-smith-devtools >= 1.13.1-03
280
281 %description -n smeserver-mariadb102
282 Koozali SME Server configuration package for mariadb102 RH SCLo
283
284 %files -n smeserver-mariadb102 -f %{name}-%{version}-filelist-mariadb102
285 %defattr(-,root,root)
286
287 #----------------------------------------------------
288 %package -n smeserver-mariadb103
289 Summary: Koozali SME Server mariadb 10.3
290 Group: Database
291 Requires: rh-mariadb103
292 Requires: rh-mariadb103-mariadb
293 Requires: rh-mariadb103-mariadb-server
294 BuildRequires: e-smith-devtools >= 1.13.1-03
295
296 %description -n smeserver-mariadb103
297 Koozali SME Server configuration package for mariadb103 RH SCLo
298
299 %files -n smeserver-mariadb103 -f %{name}-%{version}-filelist-mariadb103
300 %defattr(-,root,root)
301
302 #----------------------------------------------------
303 %package -n smeserver-mariadb105
304 Summary: Koozali SME Server mariadb 10.5
305 Group: Database
306 Requires: rh-mariadb105
307 Requires: rh-mariadb105-mariadb
308 Requires: rh-mariadb105-mariadb-server
309 BuildRequires: e-smith-devtools >= 1.13.1-03
310 Requires: smeserver-mysql >= 2.7.0-4
311 %description -n smeserver-mariadb105
312 Koozali SME Server configuration package for mariadb105 RH SCLo
313
314 %files -n smeserver-mariadb105 -f %{name}-%{version}-filelist-mariadb105
315 %defattr(-,root,root)
316
317
318 #----------------------------------------------------
319
320
321 %changelog
322 * Sun Mar 13 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-4.sme
323 - fix typo in socket, seen with phpmyadmin [SME: 11899]
324 - fix permissions for mariadb105 [SME: 11899]
325
326 * Sun Mar 13 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-3.sme
327 - missing phpMyAdmin fragments [SME: 11899]
328
329 * Sun Mar 13 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-2.sme
330 - fix few sclo issues [SME: 11899]
331 missing +x for binaries shortcut
332 mariadb105 passwordless root access
333 mysqld_safe-scl-helper vs mysqld-scl-helper
334
335 * Fri Mar 11 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-1.sme
336 - prepare spec for multiple version support [SME: 11899]
337 - package renamed from e-smith-mysql to smeserver-mysql [SME: 11897]
338 - remove duplicate logrotate and remove unsused template [SME: 11467]
339 - move scripts /etc/rc.d/init.d/mysql-init to /sbin/e-smith/systemd [SME: 11898]
340 - add rh-mariadb101 support [SME: 11901]
341 - add rh-mariadb102 support [SME: 11902]
342 - add rh-mariadb103 support [SME: 11903]
343 - add rh-mariadb105 support [SME: 11904]
344
345 * Tue Aug 17 2021 John Crisp <jcrisp@safeandsoundit.co.uk> 2.6.0-22.sme
346 - Remove template and set default max_allowed_packet=16M
347
348 * Thu Mar 18 2021 Jean-Philippe Pialasse <tests@pialasse.com> 2.6.0-21.sme
349 - fix wrong path for set password [SME: 11468]
350
351 * Sat Mar 13 2021 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-20.sme
352 - fix restore of sme9 backup fails to start mysql.init [SME: 11453]
353
354 * Thu Mar 04 2021 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-19.sme
355 - add property to enable mysqld slow queries log [SME: 455]
356 simply use SlowQueries as the amount of second and it is enabled
357 remove property to stop logging
358 - more mysqld/mariadb parameter available with properties /templates [SME: 4606]
359 - ease 4 databit characters with innodb [SME: 11404]
360 - redirect mariadb log from systemd to file [SME: 11425]
361
362 * Wed Jan 27 2021 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-18.sme
363 - fix backup fails in pre-backup in mysqldump [SME: 7827]
364
365 * Sun Dec 13 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-17.sme
366 - expand 10mysql_upgrade and restart mysql.init on e-smith-mysql-update [SME: 11120]
367 this to make sure mariadb upgrade fully and prevent residual 10mysql_upgrade stay in the way
368
369 * Wed Dec 09 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-16.sme
370 - fix issue with 10mysql_upgrade crashing mariadb [SME: 11120]
371 also removed noise from spec file
372
373 * Mon Dec 07 2020 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-15.sme
374 - e-smith-update event [SME: 11145]
375 - mariadb systemd integration [SME: 11021]
376 move set.password and template
377 create /usr/lib/systemd/system/mariadb.service.d/sme.conf
378 create /sbin/e-smith/systemd/mariadb-initialize + chmod
379 cleanup and remove old /var/service/mariadb
380 - mysql.init systemd integration [SME: 11120]
381 create mysql_init.service
382
383
384 * Sun Jul 24 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-13.sme
385 - systemd skip redirect [SME: 9688]
386
387 * Sat Jul 23 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-12.sme
388 - Corrected a typo in e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch
389 - [SME: 9671]
390
391 * Thu Jul 21 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-11.sme
392 - fix broken link /etc/init.d/supervise/mariadb [SME: 9686]
393
394 * Mon Jul 18 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-10.sme
395 - Remove Dummy database from backup and restoration [SME: 9671]
396 - Added e-smith-mysql-2.6.0.bz9671.RemoveDummyMysqlDatabase.patch
397
398 * Mon Jul 18 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-8.sme
399 - fix forgotten mysqld variables in various scripts [SME: 9438]
400 - e-smith-mysql-2.6.0-mariadb_forgotten_var.patch
401
402 * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-7.sme
403 - Use default InnoDB settings [SME: 9439]
404
405 * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-6.sme
406 - Rename mysqld to mariadb [SME: 9438]
407
408 * Mon Apr 11 2016 Daniel Berteaud <daniel@firewall-services.com> 2.6.0-5.sme
409 - Remove uneeded scriplets %post and %postun [SME: 9422]
410
411 * Thu Mar 31 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-4.sme
412 - new path for pid file with mariadb [SME: 9407]
413 - my.cnf : Innodb needs to be active for mariadb [SME: 9406]
414
415 * Fri Mar 18 2016 Jean-Philipe Pialasse <tests@pialasse.com> 2.6.0-2.sme
416 - fix mysql-server not found [SME: 9345]
417 - now using mariadb-server and mariadb
418 - Eliminated rpmbuild "bogus date" warnings due to inconsistent weekday,
419 by assuming the date is correct and changing the weekday.
420 Wed Mar 23 2001 --> Wed Mar 21 2001 or Fri Mar 23 2001 or Wed Mar 28 2001 or ....
421
422 * Fri Feb 05 2016 stephane de Labrusse <stephdl@de-labrusse.fr> 2.6.0-1.sme
423 - Initial release to sme10
424
425 * Sat Apr 26 2014 Ian Wells <esmith@wellsi.com> 2.4.0-9.sme
426 - Move mysql logging to multilog [SME: 8358]
427
428 * Mon Apr 14 2014 Ian Wells <esmith@wellsi.com> 2.4.0-8.sme
429 - Remove the information_schema [SME: 8325]
430
431 * Mon Mar 17 2014 Ian Wells <esmith@wellsi.com> 2.4.0-7.sme
432 - Use mysql_upgrade in 00_restore_dumped_dbs, by Terje Edseth [SME: 8166]
433 - Rename 10fix_privilege_tables to 10mysql_upgrade to reduce confusion.
434
435 * Sun Feb 2 2014 Ian Wells <esmith@wellsi.com> 2.4.0-6.sme
436 - Use mysql_upgrade --force due to upgrade to MySQL 5.1 [SME: 8166]
437
438 * Thu Jun 6 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-5.sme
439 - Ignore mysql.event table [SME: 7603]
440
441 * Wed Mar 20 2013 Ian Wells <esmith@wellsi.com> 2.4.0-4.sme
442 - Use --single-transaction in mysql-dump-tables [SME: 7497]
443
444 * Sat Mar 16 2013 Ian Wells <esmith@wellsi.com> 2.4.0-3.sme
445 - Use mysql_upgrade instead of fix_privilege_tables [SME: 7467]
446
447 * Mon Feb 18 2013 Daniel Berteaud <daniel@firewall-services.com> 2.4.0-2.sme
448 - Remove obsolete innodb_log_arch_dir directive [SME: 7363]
449
450 * Wed Feb 13 2013 Shad L. Lords <slords@mail.com> 2.4.0-1.sme
451 - Roll new stream for sme9
452
453 * Tue Mar 1 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-6.sme
454 - Cater for open_files_limit option my.cnf through database and template [SME: 6438]
455
456 * Thu Oct 28 2010 Shad L. Lords <slords@mail.com> 2.2.0-5.sme
457 - Fix stripping of starting numbers from script [SME: 6316]
458
459 * Mon Jun 7 2010 Filippo Carletti <filippo.carletti@gmail.com> 2.2.0-4.sme
460 - Fix %postun typo [SME: 6030]
461
462 * Mon Feb 23 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-3.sme
463 - Rework log-error logic [SME: 4807]
464
465 * Tue Dec 2 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 2.2.0-2.sme
466 - Fix log-error detection algorithm [SME: 4807]
467
468 * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 2.2.0-1.sme
469 - Roll new stream to separate sme7/sme8 trees [SME: 4633]
470
471 * Mon Oct 06 2008 Charlie Brady <charlie_brady@mitel.com> 1.13.0-2
472 - Capture mysql.init error logs to syslog. [SME: 2918]
473
474 * Mon Oct 6 2008 Stephen Noble <support@dungog.net> 1.13.0-1
475 - Roll new dev stream [SME: 4627]
476
477 * Wed Jan 09 2008 Stephen Noble <support@dungog.net> 1.12.0-15
478 - quote "$1" in post uninstall script [SME: 349]
479
480 * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
481 - Clean up spec so package can be built by koji/plague
482
483 * Sat Apr 21 2007 Shad L. Lords <slords@mail.com> 1.12.0-14
484 - Force upgrade script to run even with errors. [SME: 2530]
485
486 * Mon Apr 9 2007 Stephen Noble <Support@dungog.net> 1.12.0-13
487 - Add db settings to max_allowed_packet in my.cnf [SME: 2149]
488
489 * Mon Apr 9 2007 Stephen Noble <Support@dungog.net> 1.12.0-12
490 - Add to my.cnf [SME: 2149]
491
492 * Thu Jan 11 2007 Shad L. Lords <slords@mail.com> 1.12.0-11
493 - Move user to mysql section. [SME: 1474]
494
495 * Wed Dec 27 2006 Shad L. Lords <slords@mail.com> 1.12.0-10
496 - Split backups out by database name [SME: 1677]
497
498 * Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
499 - Update to new release naming. No functional changes.
500 - Make Packager generic
501
502 * Thu Nov 9 2006 Charlie Brady <charlie_brady@mitel.com> 1.12.0-08
503 - Ensure that failed restore is detected during mysql.init. [SME: 1652]
504
505 * Mon Sep 25 2006 Charlie Brady <charlie_brady@mitel.com> 1.12.0-07
506 - Fix pre-backup failure if mysqld is disabled in config db. [SME: 1937]
507
508 * Tue Jun 27 2006 Filippo Carletti <carletti@mobilia.it> 1.12.0-06
509 - Execute mysql_install_db using sh [SME: 1654]
510
511 * Sun Apr 30 2006 Charlie Brady <charlie_brady@mitel.com> 1.12.0-05
512 - Make innodb optional, and configure it as recommended, if enabled.
513 [SME: 1013]
514
515 * Tue Apr 18 2006 Gordon Rowell <gordonr@gormand.com.au> 1.12.0-04
516 - Add missing semi-colon to FLUSH PRIVILEGES statement [SME: 1229]
517
518 * Mon Apr 10 2006 Gordon Rowell <gordonr@gormand.com.au> 1.12.0-03
519 - Revise last patch - it backed out the db restore [SME: 1229]
520
521 * Mon Apr 10 2006 Gordon Rowell <gordonr@gormand.com.au> 1.12.0-02
522 - Move expansion of user table into set.password so it works
523 for command line runs as well as db restores [SME: 1229]
524
525 * Thu Mar 16 2006 Gordon Rowell <gordonr@gormand.com.au> 1.12.0-01
526 - Roll stable stream version. [SME: 1016]
527
528 * Mon Feb 13 2006 Charlie Brady <charlie_brady@mitel.com> 1.11.1-16
529 - Update dependencies to include mysql-server RPM. Remove obsolete
530 dependency on e-smith-packetfilter. [SME: 737]
531
532 * Fri Jan 6 2006 Gordon Rowell <gordonr@gormand.com.au> 1.11.1-15
533 - Remove explicit permission setting for /home/e-smith/db from
534 genfilelist call [SME: 371]
535
536 * Sun Jan 1 2006 Charlie Brady <charlieb@e-smith.com> 1.11.1-14
537 - Ensure that mysql is restarted after restore, and avoid race conditions
538 during mysqld restart during fix_privilege_tables. [SME: 73]
539 - Remove unnecessary mkdirs in build section - they're done by createlinks
540 script.
541
542 * Wed Dec 14 2005 Gordon Rowell <gordonr@gormand.com.au> 1.11.1-13
543 - Call fix_privilege_tables much earlier and call mysqladmin shutdown
544 after doing so - Thanks Paul Floor [SME: 73]
545
546 * Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.11.1-12
547 - Call mysql fix_privilege_tables in mysql.init [SME: 73]
548
549 * Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.11.1-11
550 - Bump release number only
551
552 * Tue Nov 15 2005 Gordon Rowell <gordonr@e-smith.com>
553 - [1.11.1-10]
554 - Reset the format of the MySQL root password for old dumps [SF: 1325378]
555
556 * Wed Aug 31 2005 Charlie Brady <charlieb@e-smith.com>
557 - [1.11.1-09]
558 - Avoid error from db-delete action if db files are not present
559 (e.g. because they have already been deleted). [SF: 1273797]
560
561 * Mon Aug 29 2005 Charlie Brady <charlieb@e-smith.com>
562 - [1.11.1-08]
563 - Fix restore of dumped tables after restore from backup.
564 Reset root password after restore of dumped dbs. [SF: 1273797]
565
566 * Thu Jun 16 2005 Charlie Brady <charlieb@e-smith.com>
567 - [1.11.1-07]
568 - Ensure that 'status' property of mysql.init is honoured at
569 startup. [MN00061795]
570
571 * Tue Jun 14 2005 Charlie Brady <charlieb@e-smith.com>
572 - [1.11.1-06]
573 - Work around race condition between mysql startup and
574 mysql.init. [SF: 1217966]
575
576 * Fri Apr 29 2005 Charlie Brady <charlieb@e-smith.com>
577 - [1.11.1-05]
578 - Use -f flag in mysql-delete-dumped-tables so that backup
579 doesn't fail if the file is missing.
580
581 * Fri Apr 15 2005 Charlie Brady <charlieb@e-smith.com>
582 - [1.11.1-04]
583 - Change /root/.my.cnf template to use esmith::util::LdapPassword
584 rather than read of ldap.pw file, to eliminate ordering
585 depenendence on ldap.pw template expansion.
586
587 * Fri Apr 15 2005 Charlie Brady <charlieb@e-smith.com>
588 - [1.11.1-03]
589 - Restore old mysql.init behaviour, to leave any failed scripts
590 behind for a later attempt, or for admin investigation. [MN00079643]
591
592 * Wed Apr 13 2005 Charlie Brady <charlieb@e-smith.com>
593 - [1.11.1-02]
594 - Fix up import of tables after a restore. Remove a few bogus
595 symlinks.
596
597 * Wed Apr 13 2005 Charlie Brady <charlieb@e-smith.com>
598 - [1.11.1-01]
599 - Roll new development stream - 1.11.1
600
601 * Mon Apr 11 2005 Charlie Brady <charlieb@e-smith.com>
602 - [1.11.0-16]
603 - Fix typo and runtime error in run script. Detect table dump
604 to be restored and set it up for mysql.init to restore it.
605
606 * Sun Apr 10 2005 Charlie Brady <charlieb@e-smith.com>
607 - [1.11.0-15]
608 - Remove trap stuff in run script (which works around mysqld brokenness)
609 and add custom control/{t,q,d,i} scripts.
610
611 * Sun Apr 10 2005 Charlie Brady <charlieb@e-smith.com>
612 - [1.11.0-14]
613 - Remove obsolete e-smith-packetfilter Requires: header.
614 - Do db initialisation in run script, as required, rather than via
615 special action script.
616 - Replace all restart-, start- and reload- actions with calls to
617 'adjust-services'. Update e-smith-lib version dependency. [MN00065576]
618 - Use generic_template_expand action where possible, in place
619 of specific actions. Update e-smith-lib dependency. [MN00064130]
620
621 * Wed Dec 29 2004 Charlie Brady <charlieb@e-smith.com>
622 - [1.11.0-13]
623 - Fix permissions on log/run script. Add missing /var/log/mysqld dir.
624 [charlieb MN00061220]
625
626 * Wed Dec 29 2004 Charlie Brady <charlieb@e-smith.com>
627 - [1.11.0-12]
628 - Add missing down file in service directory.. Fix permissions
629 on run script. [charlieb MN00061220]
630
631 * Tue Dec 28 2004 Charlie Brady <charlieb@e-smith.com>
632 - [1.11.0-11]
633 - Add missing /service/mysqld symlink [charlieb MN00061220]
634
635 * Mon Dec 20 2004 Charlie Brady <charlieb@e-smith.com>
636 - [1.11.0-10]
637 - Run mysqld under supervise. [charlieb MN00061220]
638 - Replace deprecated Copyright header with License. [charlieb]
639
640 * Tue Jan 6 2004 Michael Soulier <msoulier@e-smith.com>
641 - [1.11.0-09]
642 - Added restart to valid arguments to mysql.init. [msoulier 10866]
643
644 * Tue Jan 6 2004 Michael Soulier <msoulier@e-smith.com>
645 - [1.11.0-08]
646 - Fixed mysql.init leaving behind failed scripts, and the lack of proper
647 initscript command-line arguments. [msoulier 10866]
648
649 * Wed Dec 24 2003 Tony Clayton <apc@e-smith.com>
650 - [1.11.0-07]
651 - Updating comments in my.cnf [tonyc 10862]
652 - Don't show redundant log-error option in mysqld_safe [tonyc 10862]
653
654 * Mon Dec 22 2003 Tony Clayton <apc@e-smith.com>
655 - [1.11.0-06]
656 - fixing initscript symlink [tonyc 10862]
657
658 * Mon Dec 22 2003 Tony Clayton <apc@e-smith.com>
659 - [1.11.0-05]
660 - Add /var/run/mysqld dir for mysql.com compatibility [tonyc 10862]
661 - Fix initscript symlink [tonyc 10862]
662
663 * Mon Dec 22 2003 Tony Clayton <apc@e-smith.com>
664 - [1.11.0-04]
665 - Add initscript symlink for mysql.com compatibility [tonyc 10862]
666 - Adding /etc/logrotate.d/mysqld templates [tonyc 8662]
667
668 * Thu Dec 18 2003 Tony Clayton <apc@e-smith.com>
669 - [1.11.0-03]
670 - Clean up /etc/my.cnf templates and add comments [tonyc 10862]
671 - Add a more --user=mysql options to actions for 100% coverage [tonyc 10862]
672 - Remove redundant basedir/datadir options from actions [tonyc 10862]
673 - Clean up mysql-preload fork/exec stuff [tonyc 10862]
674
675 * Tue Dec 16 2003 Tony Clayton <apc@e-smith.com>
676 - [1.11.0-02]
677 - Add --user=mysql to mysqld args in conf-mysql-password [tonyc 10853]
678 - Future-proof /etc/my.cnf for s/safe_mysqld/mysqld_safe/ change [tonyc 8662]
679
680 * Tue Dec 16 2003 Tony Clayton <apc@e-smith.com>
681 - [1.11.0-01]
682 - Changing version to development stream number - 1.11.0
683
684 * Thu Jun 26 2003 Charlie Brady <charlieb@e-smith.com>
685 - [1.10.0-01]
686 - Changing version to stable stream number - 1.10.0
687
688 * Wed Apr 23 2003 Charlie Brady <charlieb@e-smith.com>
689 - [1.9.0-03]
690 - Remove stray " in mysql-dump-tables. [charlieb 8475]
691
692 * Tue Apr 1 2003 Charlie Brady <charlieb@e-smith.com>
693 - [1.9.0-02]
694 - Restrict mysql by default to use only unix domain socket. [charlieb 6430]
695 - Change mysql dump in pre-backup to use quotes, to fix backup/restore problem.
696 [charlieb 7953]
697 - Remove conf-mysql-startup - use db initialisation fragments instead
698 [charlieb 5665]
699
700 * Tue Apr 1 2003 Charlie Brady <charlieb@e-smith.com>
701 - [1.9.0-01]
702 - Roll development version to 1.9.0
703
704 * Mon Mar 17 2003 Lijie Deng <lijied@e-smith.com>
705 - [1.8.0-03]
706 - Deleted template-begin/end file [lijied 3295]
707
708 * Thu Jan 23 2003 Charlie Brady <charlieb@e-smith.com>
709 - [1.8.0-02]
710 - Fix typo in mysql-restart action script (mysql => mysqld). [charlieb 4774]
711
712 * Fri Oct 11 2002 Charlie Brady <charlieb@e-smith.com>
713 - [1.8.0-01]
714 - Rolling stable version number to 1.8.0
715
716 * Fri Oct 11 2002 Charlie Brady <charlieb@e-smith.com>
717 - [1.8.0-01]
718 - Rolling stable version number to 1.8.0
719
720 * Wed Sep 25 2002 Charlie Brady <charlieb@e-smith.com>
721 - [1.7.4-10]
722 - Reverse the recent logic change in mysql.init, now that action() function
723 in /etc/rc.d/init.d/functions is repaired. Replace deprecated use
724 of backticks. [charlieb 4728]
725
726 * Mon Sep 23 2002 Charlie Brady <charlieb@e-smith.com>
727 - [1.7.4-09]
728 - Actually expand /etc/my.cnf template - that's what it's for! [charlieb 4731]
729
730 * Mon Sep 23 2002 Charlie Brady <charlieb@e-smith.com>
731 - [1.7.4-08]
732 - Fix logic problem in mysql.init [charlieb 4728]
733
734 * Tue Sep 10 2002 Charlie Brady <charlieb@e-smith.com>
735 - [1.7.4-07]
736 - Add fragment to my.cnf template to disable (for now) innoDB tables, and
737 hence prevent log file noise. [charlieb 4731]
738
739 * Mon Sep 9 2002 Charlie Brady <charlieb@e-smith.com>
740 - [1.7.4-06]
741 - Update mysql-restart action and link into timezone-update event
742 [charlieb 4774]
743
744 * Mon Sep 9 2002 Charlie Brady <charlieb@e-smith.com>
745 - [1.7.4-05]
746 - Set $HOME in mysql.init script itself, otherwise it's not set when
747 run from the rc run script. Fix filenames displayed in progress message.
748 [charlieb 4782]
749 - Remove redundant mysql.conf action script [charlieb 4782]
750
751 * Fri Sep 6 2002 Charlie Brady <charlieb@e-smith.com>
752 - [1.7.4-04]
753 - Create newly required email-update event directory. [charlieb 4782]
754
755 * Fri Sep 6 2002 Charlie Brady <charlieb@e-smith.com>
756 - [1.7.4-03]
757 - Change mysql-dump-tables and mysql-delete-dumps events to pre-backup and
758 post-backup events. [charlieb 2745]
759 - Add mysql-start-if-required action, which checks if mysqld is running,
760 and start it, then runs mysql.init, if not. Linked into email-update event.
761 [charlieb 4782]
762 - Redo conf-mysql-startup using ConfigDB and remove no longer necessary
763 serviceControl() calls. [charlieb 4782]
764 - Redo mysql-conf using esmith::templates. [charlieb 4782]
765 - Change mysql.init script so that it can run programs or just load sql.
766 [charlieb 4782]
767
768 * Wed Aug 28 2002 Charlie Brady <charlieb@e-smith.com>
769 - [1.7.4-02]
770 - Create missing /etc/e-smith/sql/init directory [charlieb 4333]
771
772 * Thu Aug 22 2002 Charlie Brady <charlieb@e-smith.com>
773 - [1.7.4-01]
774 - Remove 45DenyMySQL template fragment - it's no longer needed since we
775 are using connection tracking. [charlieb 4499]
776
777 * Tue Aug 20 2002 Charlie Brady <charlieb@e-smith.com>
778 - [1.7.3-01]
779 - Add rc7.d symlinks and don't set obsolete InitscriptsOrder property
780 of services. [charlieb 4458]
781
782 * Wed Jul 17 2002 Charlie Brady <charlieb@e-smith.com>
783 - [1.7.2-01]
784 - Change masq script fragment to use iptables. [charlieb 1268]
785
786 * Wed Jun 5 2002 Charlie Brady <charlieb@e-smith.com>
787 - [1.7.1-01]
788 - Test build to verify CVS conversion
789
790 * Wed Jun 5 2002 Charlie Brady <charlieb@e-smith.com>
791 - [1.7.0-01]
792 - rollRPM: Rolled version number to 1.7.0-01. Includes patches up to 1.6.0-01.
793
794 * Tue Dec 11 2001 Jason Miller <jay@e-smith.com>
795 - [1.6.0-01]
796 - rollRPM: Rolled version number to 1.6.0-01. Includes patches up to 1.5.0-03.
797
798 * Thu Dec 6 2001 Adrian Chung <adrianc@e-smith.com>
799 - [1.5.0-03]
800 - Adding more verbose error messages to mysql-dump-tables.
801 - It should exit 0 if an error occurs, it should exit 1, and complain.
802
803 * Wed Oct 31 2001 Adrian Chung <adrianc@e-smith.com>
804 - [1.5.0-02]
805 - mysql-restart now restarts mysql if it is running, rather
806 than only starting it if it is stopped.
807 - mysql-shutdown has been added
808 - conf-mysql is now mysql-initialize-db
809 - new template /etc/my.cnf added
810 - new action mysql-conf which expands /etc/my.cnf linked to
811 bootstrap-console-save
812
813 * Mon Oct 29 2001 Adrian Chung <mac@e-smith.com>
814 - [1.5.0-01]
815 - Rolled version number to 1.5.0-01. Includes patches upto 1.4.0-03.
816 - Removed directive to remove post-restore event.
817
818 * Tue Aug 28 2001 Gordon Rowell <gordonr@e-smith.com>
819 - [1.4.0-03]
820 - Removed deprecated post-restore event directory
821
822 * Fri Aug 17 2001 gordonr
823 - [1.4.0-02]
824 - Autorebuild by rebuildRPM
825
826 * Wed Aug 8 2001 Charlie Brady <charlieb@e-smith.com>
827 - [1.4.0-01]
828 - Rolled version number to 1.4.0-01. Includes patches upto 1.3.0-18.
829
830 * Wed Aug 08 2001 Tony Clayton <tonyc@e-smith.com>
831 - [1.3.0-18]
832 - force mysql.init to sort files in init directory
833
834 * Tue Aug 7 2001 Charlie Brady <charlieb@e-smith.com>
835 - [1.3.0-17]
836 - Fix uninitialised variable problem in masq fragment.
837
838 * Wed Jul 04 2001 Gordon Rowell <gordonr@e-smith.com>
839 - [1.3.0-16]
840 - Added use esmith::util to mysql-dump-tables
841
842 * Wed Jul 04 2001 Gordon Rowell <gordonr@e-smith.com>
843 - [1.3.0-15]
844 - Use esmith::util::LdapPassword rather than direct file read
845
846 * Tue May 29 2001 Tony Clayton <tonyc@e-smith.com>
847 - [1.3.0-14]
848 - fixed actions that had tied %conf when calling serviceControl (2 actions)
849
850 * Sat Apr 07 2001 Gordon Rowell <gordonr@e-smith.com>
851 - [1.3.0-13]
852 - Forward port patches from 1.2.0-05 to 1.2.0-08
853
854 * Fri Apr 06 2001 Tony Clayton <tonyc@e-smith.com>
855 - [1.2.0-08]
856 - fixed mkdir calls in mysql-delete-dumped-tables (arguments in wrong order)
857
858 * Thu Apr 05 2001 Tony Clayton <tonyc@e-smith.com>
859 - [1.3.0-12]
860 - force mysql.init to print to stderr instead of stout
861
862 * Fri Mar 23 2001 Tony Clayton <tonyc@e-smith.com>
863 Wed Mar 23 2001 --> Wed Mar 21 2001 or Fri Mar 23 2001 or Wed Mar 28 2001 or ....
864 - [1.3.0-11]
865 - fixed uninitialized value error in conf-mysql-startup
866
867 * Wed Mar 21 2001 Tony Clayton <tonyc@e-smith.com>
868 - [1.3.0-10]
869 - fixed error on empty glob in mysql.init
870
871 * Wed Mar 21 2001 Tony Clayton <tonyc@e-smith.com>
872 - [1.3.0-09]
873 - fixed harmless errors thrown by mysql.init
874
875 * Wed Mar 21 2001 Tony Clayton <tonyc@e-smith.com>
876 - [1.3.0-08]
877 - fixed tie bug in conf-mysql-startup script which prevented the mysqld service
878 from being initialized properly.
879
880 * Thu Mar 15 2001 Tony Clayton <tonyc@e-smith.com>
881 - [1.3.0-07]
882 - created mysql.init initscript
883 - added serviceControl code for mysql.init in conf-mysql-startup
884
885 * Sat Mar 10 2001 Tony Clayton <tonyc@e-smith.com>
886 - [1.3.0-06]
887 - fixed mysql call in /sbin/e-smith/mysql-preload
888
889 * Sat Mar 10 2001 Tony Clayton <tonyc@e-smith.com>
890 - [1.3.0-05]
891 - fixed bugs in /sbin/e-smith/mysql-preload
892
893 * Fri Mar 9 2001 Adrian Chung <adrianc@e-smith.com>
894 - [1.3.0-04]
895 - added /sbin/e-smith/mysql-preload
896
897 * Sat Mar 3 2001 Charlie Brady <charlieb@e-smith.com>
898 - [1.2.0-07]
899 - add packetfilter template fragment to deny tcp/3306
900 Make packet filter fragment depend on the service db. Only block
901 TCP SYN packets.
902 - add Requires for e-smith-packetfilter.
903 - Add required permissions parameter to mkdir calls.
904
905 * Thu Mar 1 2001 Charlie Brady <charlieb@e-smith.com>
906 - [1.3.0-03]
907 - Make packet filter fragment depend on the service db. Only block
908 TCP SYN packets.
909 - Add required permissions parameter to mkdir calls.
910
911 * Thu Mar 1 2001 Adrian Chung <adrianc@e-smith.com>
912 - [1.3.0-02]
913 - add packetfilter template fragment to deny tcp/3306
914 - add Requires for e-smith-packetfilter.
915
916 * Thu Mar 1 2001 Adrian Chung <adrianc@e-smith.com>
917 - [1.3.0-01]
918 - Development stream, includes all patches up to and including
919 1.2.0-05.
920 - Ported Charlie's MySQL->mysql requires change to development
921 stream. Was 1.2.0-06, but not built.
922
923 * Fri Feb 16 2001 Adrian Chung <adrianc@e-smith.com>
924 - [1.2.0-05]
925 - changed -C option to useradd to a -c for comments.
926
927 * Thu Feb 8 2001 Adrian Chung <adrianc@e-smith.com>
928 - Rolling release number for GPG signing.
929
930 * Thu Jan 25 2001 Adrian Chung <adrianc@e-smith.com>
931 - [1.2.0-03]
932 - changed conf-mysql-account to 08 instead of 05.
933
934 * Thu Jan 25 2001 Adrian Chung <adrianc@e-smith.com>
935 - [1.2.0-02]
936 - remove rc0.d/rc6.d symlinks and replace with links to
937 e-smith-service instead.
938
939 * Thu Jan 25 2001 Peter Samuel <peters@e-smith.com>
940 - [1.2.0-01]
941 - Rolled version number to 1.2.0-01. Includes patches upto 1.1.0-31.
942
943 * Thu Jan 25 2001 Adrian Chung <adrianc@e-smith.com>
944 - [1.1.0-31]
945 - take expansion of logrotate.d/mysqld template out
946 of conf-mysqld
947
948 * Wed Jan 24 2001 Adrian Chung <adrianc@e-smith.com>
949 - [1.1.0-30]
950 - leave logrotate.d/mysqld alone now, back out patch
951 - expanding /root/.my.cnf with the password alleviates
952 need to pass -p to mysqladmin
953
954 * Wed Jan 24 2001 Adrian Chung <adrianc@e-smith.com>
955 - [1.1.0-29]
956 - expand logrotate.d/mysqld template
957 - add template directory for logrotate.d/mysqld
958
959 * Wed Jan 24 2001 Charlie Brady <charlieb@e-smith.com>
960 - [1.1.0-28]
961 - Create new mysql-conf-account script - set up mysql account and add it
962 to the accounts db. Called from post-install and post-upgrade
963
964 * Wed Jan 17 2001 Adrian Chung <adrianc@e-smith.com>
965 - [1.1.0-27]
966 - default mysql to enabled
967
968 * Wed Jan 17 2001 Peter Samuel <peters@e-smith.com>
969 - [1.1.0-26]
970 - added mysql-delete-dumped-tables action to post-upgrade event
971
972 * Wed Jan 17 2001 Peter Samuel <peters@e-smith.com>
973 - [1.1.0-25]
974 - mysql-dump-tables and mysql-import-tables actions do nothing if mysqld
975 is not running.
976 - mysql-dump-tables action does nothing if the dump directory does
977 not exist.
978 - mysql-import-tables action does nothing if there is no dump file from
979 which to import.
980 - created 2 new events - mysql-delete-dumps and mysql-dump-tables
981 - removed mysql-import-tables action from post-restore
982 - added mysql-import-tables action to post-upgrade
983 - created new action mysql-delete-dumped-tables
984 - added patch22 to list of patches to be applied - must have been
985 missed in 1.1.0-24.
986
987 * Sat Jan 13 2001 Adrian Chung <adrianc@e-smith.com>
988 - [1.1.0-24]
989 - typo $action => restart
990
991 * Sat Jan 13 2001 Adrian Chung <adrianc@e-smith.com>
992 - [1.1.0-23]
993 - mysql-{import,dump}-tables checks for enabled status of mysqld
994 before attempting to dump/import
995
996 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
997 - [1.1.0-22]
998 - changed "Couldn't $action mysqld" to "Couldn't restart mysqld".
999
1000 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
1001 - [1.1.0-21]
1002 - $ in front of ENV{'PATH'}
1003
1004 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
1005 - [1.1.0-20]
1006 - add PATH setting to conf-mysql
1007
1008 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
1009 - [1.1.0-19]
1010 - get rid of --no-defaults
1011
1012 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
1013 - [1.1.0-18]
1014 - --force mysql_install_db
1015
1016 * Fri Jan 12 2001 Tony Clayton <tonyc@e-smith.com>
1017 - [1.1.0-17]
1018 - converted to using serviceControl
1019
1020 * Fri Jan 12 2001 Adrian Chung <adrianc@e-smith.com>
1021 - [1.1.0-16]
1022 - conf-mysql needs to run even if the service isn't enabled
1023 so that during runtime, it can be enabled, and just go.
1024
1025 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1026 - [1.1.0-15]
1027 - datadir check should be /var/lib/mysql/mysql.
1028
1029 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1030 - [1.1.0-14]
1031 - conf-mysql-password checks for MySQL datadir first
1032 - mysql-{dump,import}-tables moved to
1033 /etc/e-smith/events/actions
1034 - mysql-import-tables added to post-restore action
1035
1036 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1037 - [1.1.0-13]
1038 - conf-mysql-password resets the root password, and
1039 gets rid of two blank account entries
1040 - /sbin/e-smith/mysql-dump-tables has been added
1041 which dumps mysql.dump to /home/e-smith/db/mysql
1042 - /sbin/e-smith/mysql-import-tables has been added
1043 which imports a mysql.dump text file back into a
1044 running system
1045
1046 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1047 - [1.1.0-12]
1048 - conf-mysql-password now runs in console-save as well.
1049 - if the system is started up without mysqld enabled,
1050 a password won't be set, since there are no mysql tables
1051 initialized yet.
1052
1053 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1054 - [1.1.0-11]
1055 - conf-mysql-password runs without checking whether mysql
1056 is enabled. It does not require mysqld to be started, and
1057 should always at least keep the root password in sync, in
1058 case mysqld is enabled, and started during a running system
1059 session.
1060
1061 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1062 - [1.1.0-10]
1063 - add mysql-conf-startup to post-install/upgrade.
1064
1065 * Thu Jan 11 2001 Adrian Chung <adrianc@e-smith.com>
1066 - [1.1.0-9]
1067 - make conf-mysql-password set the mysql password, instead of
1068 setting up a once-run script.
1069
1070 * Wed Jan 10 2001 Charlie Brady <charlieb@e-smith.com>
1071 - [1.1.0-8]
1072 - Create new mysql-conf-startup script - split from mysql-conf
1073 - Create new bootstrap-console-save event and install mysql-conf into it
1074
1075 * Mon Dec 18 2000 Adrian Chung <adrianc@e-smith.com>
1076 - [1.1.0-7]
1077 - added configuration database to db command.(typo).
1078
1079 * Mon Dec 18 2000 Adrian Chung <adrianc@e-smith.com>
1080 - [1.1.0-6]
1081 - added UnsavedChanges wrapper around script so that it resets
1082 UnsavedChanges flag appropriately.
1083
1084 * Fri Dec 15 2000 Adrian Chung <adrianc@e-smith.com>
1085 - Added chmod 0755 for mysqld-password init script.
1086 - Moved /etc/etc/rc.d to /etc/rc.d
1087
1088 * Fri Dec 15 2000 Adrian Chung <adrianc@e-smith.com>
1089 - Added conf-mysql-password to post-install which sets
1090 up mysqld-password in rc7.d to be run once to set the
1091 password. The mysqld-password script removes it's link
1092 from runlevel 7 and updates the configuration/services
1093 database.
1094
1095 * Fri Nov 24 2000 Adrian Chung <adrianc@e-smith.com>
1096 - Changed mysql to mysqld.
1097
1098 * Wed Nov 22 2000 Adrian Chung <adrianc@e-smith.com>
1099 - Minor modifications to conf-mysql script to make it work
1100 with the RH7.0 version of mysql.
1101
1102 * Wed Nov 22 2000 Adrian Chung <adrianc@e-smith.com>
1103 - Rolled to 1.1.0, for 4.1/7.0 stream. Changed mysql to mysqld.
1104
1105 * Tue Nov 14 2000 Adrian Chung <adrianc@e-smith.com>
1106 - initial release
1107

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