postflight.sh

来自「这是linux下运行的mysql软件包,可用于linux 下安装 php + m」· Shell 代码 · 共 22 行

SH
22
字号
#!/bin/sh## postflight - this script will be executed after the MySQL PKG# installation has been performed.## This script will install the MySQL privilege tables using the# "mysql_install_db" script and will correct the ownerships of these files# afterwards.#if cd @prefix@ ; then	if [ ! -f data/mysql/db.frm ] ; then		./scripts/mysql_install_db --rpm	fi	if [ -d data ] ; then		chown -R @MYSQLD_USER@ data	fielse	exit $?fi

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?