#! /bin/bash

su - root -c 'true'

if ! [ -d /tmp/user/0 ]; then
    echo "TMP directory not created"
    exit 1
fi
exit 0
