mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 17:31:01 +01:00
21 lines
324 B
Bash
21 lines
324 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
. ./uservars.inc
|
||
|
|
||
|
if [ `whoami` != root ]
|
||
|
then
|
||
|
echo "$0: must be root" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cat change_hat.profile | $subdomain_parser -R 2>&1 > /dev/null
|
||
|
cat change_hat.profile | $subdomain_parser
|
||
|
|
||
|
./change_hat > /dev/null 2>&1 &
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
cat change_hat.profile | $subdomain_parser -r > /dev/null 2>&1 &
|
||
|
done &
|
||
|
|