Server IP : 127.0.0.2 / Your IP : 3.148.185.226 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 if [ "$1" = configure ]; then # A dependent library of Upstart has changed, so restart Upstart # such that it can safely unmount the root filesystem (LP: #740390) # Query running version of Upstart, but only when we know # that initctl will work. # # The calculated version string may be the null string if # Upstart is not running (where for example an alternative # init is running outside a chroot environment) or if the # query failed for some reason. However, the version check # below handles a null version string correctly. UPSTART_VERSION_RUNNING=$(initctl version 2>/dev/null |\ awk '{print $3}'|tr -d ')' || :) if ischroot; then # Do not honour re-exec when requested from within a # chroot since: # # (a) The version of Upstart outside might not support it. # (b) An isolated environment such as a chroot should # not be able to modify its containing environment. # # A sufficiently new Upstart will actually handle a re-exec # request coming from telinit within a chroot correctly (by # doing nothing) but it's simple enough to perform the check # here and save Upstart the effort. : elif dpkg --compare-versions "$2" eq 0.11-4ubuntu2.1 || [ -f /var/run/jsonc_dont_reexec_upstart ]; then # Don't do anything if upgrading from 0.11-4ubuntu2.1, as upstart # will die (see https://launchpad.net/bugs/1878723) rm -f /var/run/jsonc_dont_reexec_upstart elif dpkg --compare-versions "$UPSTART_VERSION_RUNNING" ge 1.6.1; then # We are not running inside a chroot and the running version # of Upstart supports stateful re-exec, so we can # restart immediately. # # XXX: Note that the check on the running version must # remain *indefinitely* since it's the only safe way to # know if stateful re-exec is supported: simply checking # packaged version numbers is not sufficient since # the package could be upgraded multiple times without a # reboot. telinit u || : else # Before we shutdown or reboot, we need to re-exec so that we # can safely remount the root filesystem; we can't just do that # here because we lose state. touch /var/run/init.upgraded || : fi fi exit 0