aboutsummaryrefslogtreecommitdiffstats
path: root/init-sh/file_perm.sh
diff options
context:
space:
mode:
Diffstat (limited to 'init-sh/file_perm.sh')
-rwxr-xr-xinit-sh/file_perm.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/init-sh/file_perm.sh b/init-sh/file_perm.sh
index f99ef97..f69b222 100755
--- a/init-sh/file_perm.sh
+++ b/init-sh/file_perm.sh
@@ -9,9 +9,9 @@ echo -n "Setting files permissions : "
grep -v "^#" $1 | while read file owner perm; do
if [[ ${owner} != current ]]; then
- chown ${owner} ${file}
+ chown ${owner} ${file} >& /dev/null
fi
- chmod ${perm} ${file}
+ chmod ${perm} ${file} >& /dev/null
done
echo "done."