diff options
Diffstat (limited to 'trunk/src')
-rwxr-xr-x | trunk/src/jail-commit | 7 | ||||
-rwxr-xr-x | trunk/src/jail-update | 3 | ||||
-rwxr-xr-x | trunk/src/templatepkg | 6 |
3 files changed, 13 insertions, 3 deletions
diff --git a/trunk/src/jail-commit b/trunk/src/jail-commit index f3d5f05..b17a529 100755 --- a/trunk/src/jail-commit +++ b/trunk/src/jail-commit @@ -123,7 +123,8 @@ function do_commit { fi search_template $template --update - if [ "$?" == "0" ]; then + if [ "$?" == "0" ] || ! echo $TEMPLATE_UPDATE_LIST | grep -q " `dirname $TEMPLATE_BASE` "; then + TEMPLATE_UPDATE_LIST="$TEMPLATE_UPDATE_LIST `dirname $TEMPLATE_BASE` " # the end space is important if [ "$jailpath" == "/" ]; then echo Updating main installation... else @@ -137,6 +138,8 @@ function do_commit { } +TEMPLATE_UPDATE_LIST="" + if [ "$1" == "--help" ]; then usage elif [ "$1" == "--all" ]; then @@ -147,7 +150,7 @@ elif [ ! -z "$1" ]; then do_commit $1 $2 template_svn_commit `dirname $TEMPLATE_BASE` else - if [ -f $JAIL_LIST ]; then + if [ -e $JAIL_LIST ]; then for jailpath in `cat $JAIL_LIST`; do do_commit $jailpath done diff --git a/trunk/src/jail-update b/trunk/src/jail-update index 8cfc49a..c5a008f 100755 --- a/trunk/src/jail-update +++ b/trunk/src/jail-update @@ -50,6 +50,9 @@ search_template $template_name --update if [ "$?" != "0" ]; then echo $BASENAME: template $template_name not found exit 1 +elif [ ! -d "$1" ]; then + echo $BASENAME: jail $1 not found + exit 1 fi update_template_files diff --git a/trunk/src/templatepkg b/trunk/src/templatepkg index 69b4510..df6467f 100755 --- a/trunk/src/templatepkg +++ b/trunk/src/templatepkg @@ -86,7 +86,9 @@ function usage { echo "" exit - # TODO: opcao para apagar script de pos-instalacao + # TODO: opcao para apagar script de pos-instalacao ou integrar no -d + # TODO: opcao para criar um pacote a partir de um template + # TODO: TEMPLATE_FOLDER } @@ -567,6 +569,8 @@ function template_list { # list templates # usage: template_list [template_name] + # TODO: considerar outros valores de TEMPLATE_STORAGE_STYLE + local list basedir template if echo $1 | grep -q "/" || [ ! -z "$1" ]; then |