uawdijnntqw1x1x1
IP : 216.73.216.137
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) x86_64
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,
OS : Linux
PATH:
/
var
/
lib
/
ucf
/
..
/
python
/
..
/
systemd
/
..
/
php
/
..
/
python-support
/
..
/
tasksel
/
..
/
..
/
bin
/
cgroupfs-umount
/
/
#!/bin/sh # Copyright 2011 Canonical, Inc # 2014 Tianon Gravi # Author: Serge Hallyn <serge.hallyn@canonical.com> # Tianon Gravi <admwiggin@gmail.com> set -e # we don't care to move tasks around gratuitously - just umount the cgroups # if we don't even have the directory we need, something else must be wrong if [ ! -d /sys/fs/cgroup ]; then exit 0 fi # if /sys/fs/cgroup is not mounted, we don't bother if ! mountpoint -q /sys/fs/cgroup; then exit 0 fi cd /sys/fs/cgroup for sys in *; do if mountpoint -q $sys; then umount $sys fi if [ -d $sys ]; then rmdir $sys || true fi done exit 0
/var/lib/ucf/../python/../systemd/../php/../python-support/../tasksel/../../bin/cgroupfs-umount