summaryrefslogtreecommitdiffstats
path: root/source/ap/mysql/doinst.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source/ap/mysql/doinst.sh')
-rw-r--r--source/ap/mysql/doinst.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/source/ap/mysql/doinst.sh b/source/ap/mysql/doinst.sh
deleted file mode 100644
index a5d835faf..000000000
--- a/source/ap/mysql/doinst.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-# Keep same perms on rc.mysqld.new:
-if [ -e etc/rc.d/rc.mysqld ]; then
- cp -a etc/rc.d/rc.mysqld etc/rc.d/rc.mysqld.new.incoming
- cat etc/rc.d/rc.mysqld.new > etc/rc.d/rc.mysqld.new.incoming
- mv etc/rc.d/rc.mysqld.new.incoming etc/rc.d/rc.mysqld.new
-fi
-
-config etc/rc.d/rc.mysqld.new
-config etc/mysqlaccess.conf.new
-