HEX
Server: Apache
System: Linux host.gulfair-academy.com 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:42:33 UTC 2026 aarch64
User: gulfair-group (1002)
PHP: 8.4.16
Disabled: NONE
Upload Files
File: //sbin/pam_namespace_helper
#!/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