?¡ëPNG  IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À? ¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/user1137782/www/china1.by/classwithtostring.php on line 86

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#!/bin/bash ## BEGIN INIT INFO # Provides: sandbox # Default-Start: 3 4 5 # Default-Stop: 0 1 2 3 4 6 # Required-Start: # ## END INIT INFO # sandbox: Set up / mountpoint to be shared, /var/tmp, /tmp, /home/sandbox unshared # # chkconfig: 345 1 99 # # description: sandbox, xguest and other apps that want to use pam_namespace \ # require this script be run at boot. This service script does \ # not actually run any service but sets up: \ # /var/tmp, /tmp and home directories to be used by these tools.\ # If you do not use sandbox, xguest or pam_namespace you can turn \ # this service off.\ # # Source function library. . /etc/init.d/functions HOMEDIRS="/home" . /etc/sysconfig/sandbox LOCKFILE=/var/lock/subsys/sandbox base=${0##*/} start() { echo -n "Starting sandbox" [ -f "$LOCKFILE" ] && return 1 touch $LOCKFILE mount --make-rshared / || return $? mount --rbind /tmp /tmp || return $? mount --rbind /var/tmp /var/tmp || return $? mount --make-private /tmp || return $? mount --make-private /var/tmp || return $? for h in $HOMEDIRS; do mount --rbind $h $h || return $? mount --make-private $h || return $? done return 0 } stop() { echo -n "Stopping sandbox" [ -f "$LOCKFILE" ] || return 1 } status() { if [ -f "$LOCKFILE" ]; then echo "$base is running" else echo "$base is stopped" fi exit 0 } case "$1" in restart) start && success || failure ;; start) start && success || failure echo ;; stop) stop && success || failure echo ;; status) status ;; *) echo $"Usage: $0 {start|stop|status|restart}" exit 3 ;; esac