| Server IP : 54.37.205.81 / Your IP : 216.73.216.76 Web Server : nginx/1.22.1 System : Linux vps-249481fa 6.1.0-50-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1 (2026-07-02) x86_64 User : debian ( 1000) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/1006324/root/sbin/ |
Upload File : |
#!/bin/sh
CONF=/etc/security/namespace.conf
# Match logic of process_line(), except lines with $HOME are ignored
# skip the leading white space, rip off the comments, ignore empty lines
sed -e 's/^[ ]*//g' -e 's/#.*//g' -e '/.*\$HOME.*/d' -e '/^$/d' < $CONF | \
while read polydir instance_prefix method uids; do
if [ ! -e "$instance_prefix" ]; then
echo "mkdir $instance_prefix"
mkdir --parents --mode=0 -Z "$instance_prefix"
fi
done
exit 0