OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
mysql-common
Server IP: 10.0.0.4
Upload:
Name
Size
Modified
Perms
Actions
📁
..
-
11/20/2022 06:47:16 AM
rwxr-xr-x
📄
configure-symlinks
276 bytes
08/03/2016 01:32:16 PM
rwxr-xr-x
Delete
Editing: configure-symlinks
Close
#!/bin/sh set -e case "$1" in install) variant="$2" my_cnf_path="$3" update-alternatives --install /etc/mysql/my.cnf my.cnf "$my_cnf_path" 200 ;; remove) variant="$2" my_cnf_path="$3" update-alternatives --remove my.cnf "$my_cnf_path" ;; esac