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

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

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


Revision 1.3 - (hide annotations) (download)
Sun Mar 13 06:33:44 2022 UTC (2 years, 3 months ago) by jpp
Branch: MAIN
CVS Tags: smeserver-mysql-2_7_0-2_el7_sme
Changes since 1.2: +24 -5 lines
* Sun Mar 13 2022 Jean-Philippe Pialasse <tests@pialasse.com> 2.7.0-2.sme
- fix few sclo issues [SME: 11899]
  missing +x for binaries shortcut
  mariadb105 passwordless root access
  mysqld_safe-scl-helper vs mysqld-scl-helper

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

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