mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 17:31:01 +01:00

killall-ing a few things in order to make it stop. And alas, it does seem to eventually cause kernel hangs with 2.6.32-16. (Committing now before ext4 eats my changes and brain.)
21 lines
457 B
Bash
Executable file
21 lines
457 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./uservars.inc
|
|
|
|
${subdomain_parser} change_hat.profile child.profile open.profile
|
|
|
|
rm -f /tmp/foobar && touch /tmp/foobar
|
|
|
|
./open & ./open /tmp/foobar &
|
|
|
|
./child & ./child &
|
|
|
|
./change_hat > /dev/null 2>&1 & ./change_hat /tmp/foo > /dev/null 2>&1 &
|
|
|
|
while :
|
|
do
|
|
${subdomain_parser} -r change_hat.profile > /dev/null 2>&1 &
|
|
${subdomain_parser} -r child.profile > /dev/null 2>&1 &
|
|
${subdomain_parser} -r open.profile > /dev/null 2>&1 &
|
|
done &
|
|
|