mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
20 lines
462 B
Bash
20 lines
462 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
subdomain_parser=./subdomain_parser
|
||
|
|
||
|
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 &
|
||
|
|