diff options
Diffstat (limited to 'trunk')
-rw-r--r-- | trunk/lib/common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/trunk/lib/common.sh b/trunk/lib/common.sh index 807c8c9..d568854 100644 --- a/trunk/lib/common.sh +++ b/trunk/lib/common.sh @@ -460,7 +460,7 @@ function copy_template_files { # usage: copy_template_files <jail-path> if [ -d "$1" ]; then - echo "$BASENAME: copying template files..." + echo "Copying template files to $1..." if [ -d "$TEMPLATE_BASE.d" ]; then if use_svn && [ -d "$TEMPLATE_BASE.d/.svn" ]; then svn update @@ -479,6 +479,7 @@ function set_jail_perms { # usage: set_jail_perms <jail-path> if [ -s "$TEMPLATE_BASE.perms" ]; then + echo Setting jail $1 permissions... cat $TEMPLATE_BASE.perms | while read entry; do file="`echo $entry | cut -d ";" -f 1`" if [ -a "$TEMPLATE_BASE.d/$file" ] && [ -a "$1/$file" ]; then |