summaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authordirk <dirk@FreeBSD.org>2000-11-30 23:42:41 +0000
committerdirk <dirk@FreeBSD.org>2000-11-30 23:42:41 +0000
commitc65215b74e702f290942a7079b1a58b51a3535d7 (patch)
treeb0a7a1a8bdb51d091050e6a0360cd49492a55917 /databases
parentf415e19f4ee79b1d4bd6d3a8f8369b80d020d1c4 (diff)
downloadFreeBSD-ports-c65215b74e702f290942a7079b1a58b51a3535d7.zip
FreeBSD-ports-c65215b74e702f290942a7079b1a58b51a3535d7.tar.gz
Adjust mysql's homedirectory if already exists.
Diffstat (limited to 'databases')
-rw-r--r--databases/mysql322-server/pkg-install7
-rw-r--r--databases/mysql323-server/pkg-install7
-rw-r--r--databases/mysql40-server/pkg-install7
-rw-r--r--databases/mysql41-server/pkg-install7
-rw-r--r--databases/mysql50-server/pkg-install7
-rw-r--r--databases/mysql51-server/pkg-install7
-rw-r--r--databases/mysql54-server/pkg-install7
-rw-r--r--databases/mysql55-server/pkg-install7
-rw-r--r--databases/mysql60-server/pkg-install7
-rw-r--r--databases/percona55-server/pkg-install7
10 files changed, 70 insertions, 0 deletions
diff --git a/databases/mysql322-server/pkg-install b/databases/mysql322-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql322-server/pkg-install
+++ b/databases/mysql322-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql323-server/pkg-install b/databases/mysql323-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql323-server/pkg-install
+++ b/databases/mysql323-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql40-server/pkg-install b/databases/mysql40-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql40-server/pkg-install
+++ b/databases/mysql40-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql41-server/pkg-install b/databases/mysql41-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql41-server/pkg-install
+++ b/databases/mysql41-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql50-server/pkg-install b/databases/mysql50-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql50-server/pkg-install
+++ b/databases/mysql50-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql51-server/pkg-install b/databases/mysql51-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql51-server/pkg-install
+++ b/databases/mysql51-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql54-server/pkg-install b/databases/mysql54-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql54-server/pkg-install
+++ b/databases/mysql54-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql55-server/pkg-install b/databases/mysql55-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql55-server/pkg-install
+++ b/databases/mysql55-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/mysql60-server/pkg-install b/databases/mysql60-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/mysql60-server/pkg-install
+++ b/databases/mysql60-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
diff --git a/databases/percona55-server/pkg-install b/databases/percona55-server/pkg-install
index 3e92502..42682fe 100644
--- a/databases/percona55-server/pkg-install
+++ b/databases/percona55-server/pkg-install
@@ -25,6 +25,13 @@ POST-INSTALL)
if pw user show "${USER}" 2>/dev/null; then
echo "You already have a user \"${USER}\", so I will use it."
+ if pw usermod ${USER} -d ${DB_DIR}
+ then
+ echo "Changed home directory of \"${USER}\" to \"${DB_DIR}\""
+ else
+ echo "Changing home directory of \"${USER}\" to \"${DB_DIR}\" failed..."
+ exit 1
+ fi
else
if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \
-d ${DB_DIR} -s /sbin/nologin -c "MySQL Daemon"
OpenPOWER on IntegriCloud