forked from mysql/mysql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql-community-server.preinst
executable file
·131 lines (105 loc) · 2.42 KB
/
mysql-community-server.preinst
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/bin/bash
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
get_pcount () {
PSCOUNT=$(ps -ef | grep "/usr/sbin/mysqld" | wc -l)
echo "${PSCOUNT}"
}
server_stop () {
PSCOUNT=$(get_pcount)
COUNT=0
while :; do
COUNT=$(( COUNT+1 ))
echo -n .
if [ "${PSCOUNT}" -eq 1 ];
then
echo
break
fi
if [ "${COUNT}" -gt 15 ];
then
echo
return 1
fi
PSCOUNT=$(get_pcount)
sleep 1
done
return 0
}
case "$1" in
install)
if [ -z "$2" ];
then
set -e
if [ -x "/etc/init.d/mysql" ];
then
invoke-rc.d mysql stop || exit $?
server_stop
fi
MYSQLDATA=/var/lib/mysql
MYSQLFILES=/var/lib/mysql-files
MYSQLLOG=/var/log/mysql
MYSQLRUN=/var/run/mysqld
if ! getent group mysql >/dev/null;
then
addgroup --system mysql >/dev/null
fi
if ! getent passwd mysql >/dev/null;
then
adduser --ingroup mysql --system --disabled-login --no-create-home --home ${MYSQLDATA} --shell /bin/false --gecos "MySQL Server" mysql >/dev/null
fi
if [ ! -d ${MYSQLDATA} -a ! -L ${MYSQLDATA} ];
then
mkdir ${MYSQLDATA}
chown mysql:mysql ${MYSQLDATA}
chmod 750 ${MYSQLDATA}
fi
if [ ! -d ${MYSQLFILES} -a ! -L ${MYSQLFILES} ];
then
mkdir ${MYSQLFILES}
chown mysql:mysql ${MYSQLFILES}
chmod 770 ${MYSQLFILES}
fi
if [ ! -d ${MYSQLLOG} -a ! -L ${MYSQLLOG} ];
then
mkdir ${MYSQLLOG}
chown mysql:adm ${MYSQLLOG}
chmod 750 ${MYSQLLOG}
touch ${MYSQLLOG}/error.log
chmod 640 ${MYSQLLOG}/error.log
chown mysql:adm ${MYSQLLOG}/error.log
fi
if [ ! -d ${MYSQLRUN} -a ! -L ${MYSQLRUN} ];
then
mkdir ${MYSQLRUN}
chown mysql:mysql ${MYSQLRUN}
chmod 755 ${MYSQLRUN}
fi
set +e
fi
;;
upgrade)
set -e
#DEBHELPER#
server_stop
set +e
;;
abort-upgrade)
;;
*)
exit 1
;;
esac
exit 0