mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-08 18:31:03 +01:00
20 lines
440 B
Bash
20 lines
440 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
. ./uservars.inc
|
||
|
|
||
|
cat change_hat.profile child.profile open.profile | ${subdomain_parser}
|
||
|
|
||
|
./open & ./open /tmp/foobar &
|
||
|
|
||
|
./child & ./child &
|
||
|
|
||
|
./change_hat > /dev/null 2>&1 & ./change_hat /tmp/foo > /dev/null 2>&1 &
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
cat change_hat.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
|
||
|
cat child.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
|
||
|
cat open.profile | ${subdomain_parser} -r > /dev/null 2>&1 &
|
||
|
done &
|
||
|
|