X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=6797708525179750e9e84c5de98e4b211c44c2de;hb=e855cd6aa2d75a11b18c923f9c9ceed8c59ce94a;hp=5771586fb47ed99143b0277aca1093da9085760b;hpb=b8cb2a405ef5ff881ed7c256c57f0b06fe7615b5;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 5771586f..67977085 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -121,7 +121,7 @@ if [ -z "$skip_all" ]; then # checks the result of the last command that was run, and if that failed, # then this complains and exits from bash. the function parameters are # used as the message to print as a complaint. - function test_or_fail() + function test_or_die() { if [ $? -ne 0 ]; then echo -e "\n\naction failed: $*\n\nExiting script..." @@ -130,7 +130,7 @@ if [ -z "$skip_all" ]; then fi } - # like test_or_fail, but will keep going after complaining. + # like test_or_die, but will keep going after complaining. function test_or_continue() { if [ $? -ne 0 ]; then @@ -363,14 +363,15 @@ if [ -z "$skip_all" ]; then # sudo function wraps the normal sudo by ensuring we replace the terminal # label if they're doing an su with the sudo. function sudo() { -# local first_command="$1" save_terminal_title /usr/bin/sudo "$@" + retval=$? restore_terminal_title # if [ "$first_command" == "su" ]; then # # yep, they were doing an su, but they're back now. # label_terminal_with_info # fi + return $retval } # trashes the .#blah files that cvs and subversion leave behind when finding conflicts. @@ -388,6 +389,7 @@ if [ -z "$skip_all" ]; then echo "The nechung oracle program cannot be found. You may want to consider" echo "rebuilding the feisty meow applications with this command:" echo "bash $FEISTY_MEOW_SCRIPTS/generator/produce_feisty_meow.sh" + echo else $wheres_nechung fi @@ -737,7 +739,7 @@ return 0 if [ -d "$src" ]; then ln -s "$src" "$target" - test_or_fail "Creating symlink from '$src' to '$target'" + test_or_die "Creating symlink from '$src' to '$target'" fi echo "Created symlink from '$src' to '$target'." } @@ -772,6 +774,35 @@ return 0 ############## + # echoes the machine's hostname. can be used like so: + # local my_host=$(get_hostname) + function get_hostname() + { + # there used to be more variation in how to do this, but adopting mingw + # and cygwin tools really helped out. + local this_host=unknown + if [ "$OS" == "Windows_NT" ]; then + this_host=$(hostname) + elif [ ! -z "$(echo $MACHTYPE | grep apple)" ]; then + this_host=$(hostname) + elif [ ! -z "$(echo $MACHTYPE | grep suse)" ]; then + this_host=$(hostname --long) + elif [ -x "$(which hostname 2>/dev/null)" ]; then + this_host=$(hostname) + fi + echo "$this_host" + } + + # makes sure that the provided "folder" is a directory and is writable. + function test_writeable() + { + local folder="$1"; shift + if [ ! -d "$folder" -o ! -w "$folder" ]; then return 1; fi + return 0 + } + + ############## + # NOTE: no more function definitions are allowed after this point. function function_sentinel() @@ -789,7 +820,7 @@ return 0 echo running tests on set_var_if_undefined. flagrant=petunia set_var_if_undefined flagrant forknordle - test_or_fail "testing if defined variable would be whacked" + test_or_die "testing if defined variable would be whacked" if [ $flagrant != petunia ]; then echo set_var_if_undefined failed to leave the test variable alone exit 1