Server IP : 127.0.0.2 / Your IP : 3.129.253.49 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh set -e # Automatically added by dh_installdeb dpkg-maintscript-helper rm_conffile /etc/mysql/conf.d/.keepme 5.6.22-1~ mysql-common -- "$@" # End automatically added section # Automatically added by dh_installdeb dpkg-maintscript-helper rm_conffile /etc/mysql/my.cnf 5.6.22-1~ mysql-common -- "$@" # End automatically added section # This code needs to go after the debhelper snippets so that it runs after # dpkg-maintscript-helper rm_conffile on /etc/mysql/my.cnf. As a one off, if # my.cnf.dpkg-bak exists after this stage then we rename it to # /etc/mysql/my.cnf.migrated, add an explanatory note to the top and add it is # a high priority alternative so it gets used in favour of any other my.cnf # shipped by variants. The /etc/mysql/my.cnf.migrated file will not be owned by # any package (just like /etc/mysql/my.cnf.dpkg-bak would have been) but we # rename it since it will be in active use, the user may not expect a .dpkg-bak # file to be in use and we do not want to surprise the user. if [ "$1" = "configure" ]; then # Low priority fallback for client use when no server is installed. update-alternatives --install /etc/mysql/my.cnf my.cnf /etc/mysql/my.cnf.fallback 100 fi if [ "$1" = "configure" -a -f /etc/mysql/my.cnf.dpkg-bak ] && dpkg --compare-versions "$2" le "5.6.19-1~exp1ubuntu2~"; then echo "Moving /etc/mysql/my.cnf.dpkg-bak to /etc/mysql/my.cnf.migrated" cat - /etc/mysql/my.cnf.dpkg-bak <<EOT > /etc/mysql/my.cnf.migrated # This file has been automatically moved from your previous # /etc/mysql/my.cnf, with just this comment added at the top, to maintain MySQL # operation using your previously customised configuration. # To switch to the new packaging configuration for automated management of # /etc/mysql/my.cnf across multiple variants: # # 1. Move your customisations from this file to /etc/mysql/conf.d/ and # to /etc/mysql/<variant>.conf.d/ as appropriate. # 2. Run "update-alternatives --remove my.cnf /etc/mysql/my.cnf.migrated" # 3. Remove the file /etc/mysql/my.cnf.migrated EOT rm /etc/mysql/my.cnf.dpkg-bak echo "Using your previous configuration through /etc/mysql/my.cnf.migrated" update-alternatives --install /etc/mysql/my.cnf my.cnf /etc/mysql/my.cnf.migrated 300 fi