From c2edea5ccfb1eadabc3fd4a6d1eb9c5c0a8251e2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 26 Feb 2010 18:19:23 +1100 Subject: devel: get the ownership of the directories right in tmpfs.sh --- source4/scripting/devel/tmpfs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/scripting/devel') diff --git a/source4/scripting/devel/tmpfs.sh b/source4/scripting/devel/tmpfs.sh index 14e9b276c6..44ee04b2ce 100755 --- a/source4/scripting/devel/tmpfs.sh +++ b/source4/scripting/devel/tmpfs.sh @@ -9,8 +9,8 @@ sudo umount bin > /dev/null 2>&1 sudo umount st > /dev/null 2>&1 mkdir -p bin st || exit 1 sudo mount -t tmpfs /dev/null bin || exit 1 -sudo chown $USER bin || exit 1 +sudo chown $USER bin/. || exit 1 echo "tmpfs setup for bin/" sudo mount -t tmpfs /dev/null st || exit 1 -sudo chown $USER st || exit 1 +sudo chown $USER st/. || exit 1 echo "tmpfs setup for st/" -- cgit