diff options
Diffstat (limited to 'trunk/src/templatepkg')
-rwxr-xr-x | trunk/src/templatepkg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index 858911d..097ff1b 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -60,7 +60,7 @@ function usage { echo "" echo " $BASENAME -e <svn-repository>" echo "" - echo " -i | --import: grab /etc/simplepkg/templates from a svn repository:" + echo " -i | --import: grab $BASE_CONF/templates from a svn repository:" echo "" echo " $BASENAME -i <svn-repository>" echo "" @@ -562,7 +562,7 @@ function template_post_install_edit { vi $TEMPLATE_BASE.s/$1 fi if [ "$sha1sum" != "`sha1sum $TEMPLATE_BASE.s/$1`" ]; then - echo $BASENAME: please run jail-commit to send changes to the repository + echo $BASENAME: please run \'jail-commit --all\' to send changes to the repository fi else @@ -574,7 +574,7 @@ function template_post_install_edit { if [ -d "$TEMPLATE_BASE.s/.svn" ]; then cd $TEMPLATE_BASE.s svn add $1 - echo "$BASENAME: please run jail-commit to send the script to the repository" + echo "$BASENAME: please run \'jail-commit --all\' to send the script to the repository" fi echo "$BASENAME: script created; run templatepkg -p `basename $TEMPLATE_BASE` $1 again to edit it" @@ -600,7 +600,7 @@ function template_edit { vi $TEMPLATE_BASE.template fi if [ "$sha1sum" != "`sha1sum $TEMPLATE_BASE.template`" ]; then - echo $BASENAME: please run jail-commit to send changes to the repository + echo $BASENAME: please run \'jail-commit --all\' to send changes to the repository fi else echo $BASENAME: file not found: $TEMPLATE_BASE.template |