add shell base install script and corresponding remote install
fixed-imporved remote script and added support for script from HEREDOC or stdinmaster
parent
2b426a1225
commit
a0f44558fa
|
@ -0,0 +1,39 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# assumes that bash is installed
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# must! be run as sudo
|
||||||
|
install_shell_base () {
|
||||||
|
# TODO have a cross distro package install
|
||||||
|
[[ ! $(which git) ]] && apt-get install --no-install-recommends git -y
|
||||||
|
[[ ! $EUID -eq 0 ]] && { echo ERROR script must be run as root; return; }
|
||||||
|
mkdir -p /shell/base
|
||||||
|
git clone https://git.kebler.net/bash/shell-base.git /shell/base
|
||||||
|
chown -R ${1:-$1000}:${1:-1000} /shell
|
||||||
|
chmod -R +r /shell
|
||||||
|
/bin/bash /shell/base/install/install.sh ${1:-$1000}
|
||||||
|
}
|
||||||
|
|
||||||
|
# remote_install_shell_base -r <remote host> <sudo pass if host not root> <user to install, default is $USER>
|
||||||
|
# module_load install-shell-base && remote_install_shell_base -r newboxr
|
||||||
|
remote_install_shell_base () {
|
||||||
|
module_load remote
|
||||||
|
local supass;local user
|
||||||
|
if [[ $1 == "-r" ]]; then
|
||||||
|
shift 1;
|
||||||
|
user=$2;
|
||||||
|
else
|
||||||
|
[[ ! $2 ]] && { echo sudo password for remote user required; return 2; }
|
||||||
|
supass="-p $2"
|
||||||
|
user=$3
|
||||||
|
fi
|
||||||
|
remote_script $supass install-shell-base $user -- $1
|
||||||
|
}
|
||||||
|
|
||||||
|
# # if script was executed then call the function
|
||||||
|
(return 0 2>/dev/null) || install_shell_base $@
|
||||||
|
|
||||||
|
# example
|
||||||
|
# $ module_load install-shell-base
|
||||||
|
# $ remote_install_shell_base -r portabler david
|
||||||
|
|
|
@ -4,24 +4,32 @@ remote_script () {
|
||||||
# usage: remote_script script -- <ssh setup options> host <ssh options>
|
# usage: remote_script script -- <ssh setup options> host <ssh options>
|
||||||
# see ssh function
|
# see ssh function
|
||||||
#
|
#
|
||||||
local sshargs;local user;local supass;local fn;
|
local sshargs;local user;local supass;local fn;local args;local file
|
||||||
|
|
||||||
|
[[ "$*" =~ "--" ]] && sshargs=$(sed 's/.*--\(.*\)/\1/' <<< "$@")
|
||||||
|
[[ ! $sshargs ]] && { echo missing remote machine, must provide at least a hostname, -- hostname; return 3; }
|
||||||
|
# reset arguments to just those before --
|
||||||
|
set -- $(sed 's/\(.*\)--.*/\1/' <<< "$@")
|
||||||
|
|
||||||
local OPTION
|
local OPTION
|
||||||
local OPTARG
|
local OPTARG
|
||||||
local OPTIND
|
local OPTIND
|
||||||
while getopts 'u:s:f:' OPTION; do
|
while getopts 'u:s:f:p:' OPTION; do
|
||||||
# echo OPTION $OPTION ARG $OPTARG
|
# echo OPTION $OPTION ARG $OPTARG INDX $OPTIND
|
||||||
case "$OPTION" in
|
case "$OPTION" in
|
||||||
|
s)
|
||||||
|
# script filename to run
|
||||||
|
file=$OPTARG
|
||||||
|
;;
|
||||||
f)
|
f)
|
||||||
# run a function within the script
|
# run a function within the script
|
||||||
fn=$OPTARG
|
fn=$OPTARG
|
||||||
;;
|
;;
|
||||||
|
|
||||||
u)
|
u)
|
||||||
# run command as another user
|
# run command as another user
|
||||||
user=$OPTARG
|
user=$OPTARG
|
||||||
;;
|
;;
|
||||||
s)
|
p)
|
||||||
# password of sudo account for running as root or other user
|
# password of sudo account for running as root or other user
|
||||||
supass=$OPTARG
|
supass=$OPTARG
|
||||||
;;
|
;;
|
||||||
|
@ -32,33 +40,26 @@ local OPTION
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
shift $((OPTIND - 1))
|
shift $((OPTIND - 1))
|
||||||
|
|
||||||
local script=$1
|
[[ ! $file ]] && { file=$1;shift 1; }
|
||||||
[[ ! -f $script ]] && { echo cannot find script $script to run; return 1; }
|
if [[ ! -f $file ]]; then
|
||||||
|
file=$(module_find $file)
|
||||||
|
[[ ! $file ]] && { echo no module or script at $file to run; return 1; }
|
||||||
|
fi
|
||||||
|
|
||||||
[[ "$*" =~ "--" ]] && sshargs=$(sed 's/.*--\(.*\)/\1/' <<< "$@")
|
# remaining script arguments
|
||||||
[[ ! $sshargs ]] && { echo must provide at least a hostname; return 3; }
|
args=$*
|
||||||
|
# echo arguments for script: $args
|
||||||
# escape arguments with spaces
|
|
||||||
local i=2
|
|
||||||
local count=0
|
|
||||||
declare -a args
|
|
||||||
while [[ ! ${!i} = "--" ]]
|
|
||||||
do
|
|
||||||
#echo "${!i}"
|
|
||||||
args[count]=$(printf '%q' "${!i}")
|
|
||||||
count=$((count+1))
|
|
||||||
i=$((i+1))
|
|
||||||
done
|
|
||||||
|
|
||||||
|
script=$file
|
||||||
# if script loads a module then use bundler
|
# if script loads a module then use bundler
|
||||||
if [[ $(cat $script | grep module_load) ]]; then
|
if [[ $(cat $script | grep module_load) ]]; then
|
||||||
echo bundling modules with script
|
# echo bundling modules with script
|
||||||
local temp
|
local temp
|
||||||
module_load bundle
|
module_load bundle
|
||||||
script=$( mktemp -t TEMP_FILE_script.XXXXXXXX )
|
script=$( mktemp -t TEMP_FILE_script.XXXXXXXX )
|
||||||
bundle $1 $script
|
bundle $file $script
|
||||||
temp=true
|
temp=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -74,23 +75,38 @@ if [[ $supass ]]; then
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
src=$(cat $script)
|
src="$(cat $script);"
|
||||||
if [[ $fn ]]; then
|
if [[ $fn ]]; then
|
||||||
# echo running function
|
# echo running function
|
||||||
cmd="bash -c '$src; $fn ${args[*]}'"
|
cmd="bash -c '$src $fn ${args[*]}'"
|
||||||
else
|
else
|
||||||
# echo running as script
|
# echo running as script
|
||||||
local sargs
|
local sargs
|
||||||
[[ ${args[*]} ]] && sargs=$(printf '%s\n' "set -- ${args[*]}")
|
[[ ${args} ]] && sargs="$(printf '%s\n' "set -- ${args}"); "
|
||||||
cmd="bash -c '$sargs; $(cat $script)'"
|
cmd="bash -c '$sargs $src'"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# echo ssh $sshargs "$_sudo" "$cmd"
|
||||||
ssh $sshargs "$_sudo" "$cmd"
|
ssh $sshargs "$_sudo" "$cmd"
|
||||||
|
|
||||||
[[ $temp ]]&& rm -f $script
|
[[ $temp ]]&& rm -f $script
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# can be used with a file or HEREDOC
|
||||||
|
# todo test with < $file or with a pipe
|
||||||
|
remote_stdin () {
|
||||||
|
local file
|
||||||
|
# echo args $@
|
||||||
|
file=$( mktemp -t TEMP_FILE_script.XXXXXXXX )
|
||||||
|
cat > $file
|
||||||
|
echo remote_script -s "$file" "$@"
|
||||||
|
#remote_script -s "$file" "$@"
|
||||||
|
rm $file
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
# # if script was executed then call the function
|
# # if script was executed then call the function
|
||||||
(return 0 2>/dev/null) ||remote_script $@
|
(return 0 2>/dev/null) ||remote_script $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue