Server IP : 127.0.0.2 / Your IP : 18.119.126.168 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 -e . /usr/share/debconf/confmodule db_version 2.0 PKG="byobu" db_get byobu/launch-by-default || true if [ "$RET" = true ]; then touch /etc/$PKG/autolaunch else rm -f /etc/$PKG/autolaunch fi # Install correct .desktop file if [ -x /usr/lib/gnome-terminal/gnome-terminal-server ]; then ln -sf /usr/share/$PKG/desktop/$PKG.desktop /usr/share/applications/$PKG.desktop else ln -sf /usr/share/$PKG/desktop/$PKG.desktop.old /usr/share/applications/$PKG.desktop fi # Clean up any old-school screen-profiles diversions of /usr/bin/screen if [ -f /usr/bin/screen ] && [ -f /usr/bin/screen.real ]; then divertpkg=$(dpkg-divert --listpackage /usr/bin/screen || true) if [ "$divertpkg" = "screen-profiles" ]; then rm -f /usr/bin/screen dpkg-divert --package screen-profiles --rename --remove /usr/bin/screen fi fi # Remove the short-lived MOTD message rm -f /etc/update-motd.d/55-window-manager # Attempt to notify users that they should reload their profile touch_flag() { touch "$1" || true chown --reference $(dirname "$1") "$1" || true chmod 700 "$1" || true } [ -r "/etc/$PKG/socketdir" ] && . "/etc/$PKG/socketdir" if [ -d "$SOCKETDIR" ]; then for d in "$SOCKETDIR"/S-*; do if [ -d "$d/$PKG" ]; then # New location of the reload flag touch_flag "$d/$PKG/reload-required" elif [ -d "$d" ]; then # Old location of the reload flag touch_flag "$d/$PKG.reload-required" fi done fi # Clean-up obsolete config file rm -f /etc/byobu/statusrc || true # Automatically added by dh_icons if which update-icon-caches >/dev/null 2>&1 ; then update-icon-caches /usr/share/icons/HighContrast fi # End automatically added section # vi: syntax=sh ts=4 noexpandtab