Admin
dashboard
file manager
command
php exec
/
/
usr
/
share
/
mysql-common
path:
go
upload
mkdir
name
type
size
perms
modified
actions
[parent directory]
configure-symlinks
file
276 B
0755
2020-10-20 08:42:37
edit
delete
rename
editing: configure-symlinks
#!/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
save
cancel