apparmor/tests/stress/subdomain/stress.sh
Steve Beattie 6d3e74907d Import the rest of the core functionality of the internal apparmor
development tree (trunk branch). From svn repo version 6381.
2006-04-11 21:52:54 +00:00

19 lines
440 B
Bash
Executable file

#!/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 &