/usr/share/cgmanager/tests/test07.sh is in cgmanager-tests 0.39-2ubuntu5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #!/bin/bash
echo "Test 7 (non-root movepid)"
cgm create memory xxx/b
# try to move another task to xxx/b without being root - should fail
if [ -n "$SUDO_USER" ]; then
gid=$SUDO_GID
uid=$SUDO_UID
else
gid=1000
uid=1000
fi
sleep 200 &
pid=$!
sudo -u \#$uid cgm movepid memory xxx/b $pid
if [ $? -eq 0 ]; then
echo "Failed test 7 - uid $uid could move root-owned sleep"
exit 1
fi
exit 0
|