Changeset 247
- Timestamp:
- 06/11/2008 22:02:44 (4 years ago)
- File:
-
- 1 edited
-
tags/confman-1.7/confman (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tags/confman-1.7/confman
r245 r247 22 22 fi 23 23 24 trap "conf_cleanExit" EXIT25 24 # Set a default editor 26 25 if [ -z ${EDITOR} ] ; then … … 63 62 echo "Setup failed." >&4 64 63 conf_unlock_wcopy 65 exit164 return 1 66 65 fi 67 66 else … … 940 939 then 941 940 echo "Could not fetch the tarball." >&2 942 exit1941 return 1 943 942 fi 944 943 … … 979 978 do 980 979 local livefile="$tmproot${file}" 981 local tmpfile=`${mktemp_file}` || exit1980 local tmpfile=`${mktemp_file}` || return 1 982 981 local owner group mode flag livepart msg 983 982 for layer in $LAYERS ; do … … 1030 1029 subcommand=$1 1031 1030 shift 1031 trap "conf_cleanExit" EXIT 1032 1032 case $subcommand in 1033 help ) print_help "$@" ; exit 0 ;;1033 help ) print_help "$@" ; trap EXIT; exit 0 ;; 1034 1034 setup|se* ) setup "$@" ;; 1035 1035 status ) status "$@" ;;
Note: See TracChangeset
for help on using the changeset viewer.
