mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
allow supplying a command line to execute to ssh
remove debugging echo statements add -q argument to suppress outputting lxc command line
This commit is contained in:
parent
4fedfb377d
commit
3e0a621450
@ -37,6 +37,12 @@
|
|||||||
D=$(dirname "$BASH_SOURCE")
|
D=$(dirname "$BASH_SOURCE")
|
||||||
. "$D/lx_functions.sh" || exit 1
|
. "$D/lx_functions.sh" || exit 1
|
||||||
|
|
||||||
|
show_cl="yes"
|
||||||
|
if [ "$1" = "-q" ]; then
|
||||||
|
show_cl="no"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
|
||||||
vlx_guess() {
|
vlx_guess() {
|
||||||
if [ $# -eq 2 ]; then
|
if [ $# -eq 2 ]; then
|
||||||
LX_PROJECT="$1"
|
LX_PROJECT="$1"
|
||||||
@ -83,7 +89,6 @@ vlx_exec() {
|
|||||||
if [ "${args[$idx]}" = "--" ]; then
|
if [ "${args[$idx]}" = "--" ]; then
|
||||||
if [ $idx -eq 3 ]; then
|
if [ $idx -eq 3 ]; then
|
||||||
# format 1 with cwd
|
# format 1 with cwd
|
||||||
echo "f1"
|
|
||||||
wd="$3"
|
wd="$3"
|
||||||
vlx_guess "$1" "$2" || return 1
|
vlx_guess "$1" "$2" || return 1
|
||||||
shift; shift; shift; shift;
|
shift; shift; shift; shift;
|
||||||
@ -92,12 +97,10 @@ vlx_exec() {
|
|||||||
if [ "${2#/}" != "$2" ]; then
|
if [ "${2#/}" != "$2" ]; then
|
||||||
# wd starts with /, so it's a path
|
# wd starts with /, so it's a path
|
||||||
# format 2
|
# format 2
|
||||||
echo "f2"
|
|
||||||
wd="$2"
|
wd="$2"
|
||||||
vlx_guess "" "$1" || return 1
|
vlx_guess "" "$1" || return 1
|
||||||
else
|
else
|
||||||
# format 1 w/o cwd
|
# format 1 w/o cwd
|
||||||
echo "f1 w/o cwd"
|
|
||||||
vlx_guess "$1" "$2" || return 1
|
vlx_guess "$1" "$2" || return 1
|
||||||
fi
|
fi
|
||||||
shift; shift; shift;
|
shift; shift; shift;
|
||||||
@ -106,12 +109,10 @@ vlx_exec() {
|
|||||||
if [ "${1#/}" != "$1" ]; then
|
if [ "${1#/}" != "$1" ]; then
|
||||||
# wd starts with /, so it's a path
|
# wd starts with /, so it's a path
|
||||||
# format 3
|
# format 3
|
||||||
echo "f3"
|
|
||||||
wd="$1"
|
wd="$1"
|
||||||
vlx_guess || return 1
|
vlx_guess || return 1
|
||||||
else
|
else
|
||||||
# format 2 w/o cwd
|
# format 2 w/o cwd
|
||||||
echo "f2 w/o cwd"
|
|
||||||
vlx_guess "$1" || return 1
|
vlx_guess "$1" || return 1
|
||||||
fi
|
fi
|
||||||
shift; shift;
|
shift; shift;
|
||||||
@ -121,7 +122,6 @@ vlx_exec() {
|
|||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
# format 4
|
# format 4
|
||||||
echo "f4"
|
|
||||||
vlx_guess || return 1
|
vlx_guess || return 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -129,28 +129,43 @@ vlx_exec() {
|
|||||||
if [ ! -z "$wd" ]; then
|
if [ ! -z "$wd" ]; then
|
||||||
xargs="--cwd $wd"
|
xargs="--cwd $wd"
|
||||||
fi
|
fi
|
||||||
echo lxc --project "$LX_PROJECT" exec "$LX_INST" $xargs -- "$@"
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" exec "$LX_INST" $xargs -- "$@"
|
||||||
lxc --project "$LX_PROJECT" exec "$LX_INST" $xargs -- "$@"
|
lxc --project "$LX_PROJECT" exec "$LX_INST" $xargs -- "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_shell() {
|
vlx_shell() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" exec "$LX_INST" -- bash
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" exec "$LX_INST" -- bash
|
||||||
lxc --project "$LX_PROJECT" exec "$LX_INST" -- bash
|
lxc --project "$LX_PROJECT" exec "$LX_INST" -- bash
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_hostname() {
|
vlx_hostname() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
local host
|
|
||||||
lxc --project "$LX_PROJECT" exec "$LX_INST" -- /usr/bin/hostname --fqdn || return 1
|
lxc --project "$LX_PROJECT" exec "$LX_INST" -- /usr/bin/hostname --fqdn || return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vlx_ipaddr() {
|
||||||
|
vlx_guess "$@" || return 1
|
||||||
|
local hostip
|
||||||
|
hostip="$(lxc --project "$LX_PROJECT" exec "$LX_INST" -- /usr/bin/hostname -I)"
|
||||||
|
[ $? -ne 0 -o -z "$hostip" ] && return 1
|
||||||
|
awk '{print $1}' <<<"$hostip"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
vlx_ssh() {
|
vlx_ssh() {
|
||||||
local host="$1"
|
local host="$1"
|
||||||
|
if [ "$host" = "--" ]; then
|
||||||
|
host=""
|
||||||
|
else
|
||||||
|
shift
|
||||||
|
fi
|
||||||
if [ -z "$host" ]; then
|
if [ -z "$host" ]; then
|
||||||
host="$(vlx_hostname)"
|
host="$(vlx_ipaddr)"
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
echo "Could not determine hostname, please specify"
|
echo "Could not determine ip address, please specify"
|
||||||
host=""
|
host=""
|
||||||
fi
|
fi
|
||||||
if [ -z "$host" ]; then
|
if [ -z "$host" ]; then
|
||||||
@ -161,20 +176,22 @@ vlx_ssh() {
|
|||||||
local id="$(lx_get_ssh_identity)"
|
local id="$(lx_get_ssh_identity)"
|
||||||
local known_hosts="$(lx_get_ssh_known_hosts)"
|
local known_hosts="$(lx_get_ssh_known_hosts)"
|
||||||
local vmuser="vmuser"
|
local vmuser="vmuser"
|
||||||
#echo ssh -i "$id" -o UserKnownHostsFile="$known_hosts" -o StrictHostKeyChecking=no "$vmuser@$host"
|
#echo ssh -i "$id" -o UserKnownHostsFile="$known_hosts" -o StrictHostKeyChecking=no "$vmuser@$host" "$@"
|
||||||
echo "Connecting to $vmuser@$host ..."
|
echo "Connecting to $vmuser@$host ..."
|
||||||
ssh -i "$id" -o UserKnownHostsFile="$known_hosts" -o StrictHostKeyChecking=no "$vmuser@$host"
|
ssh -i "$id" -o UserKnownHostsFile="$known_hosts" -o StrictHostKeyChecking=no "$vmuser@$host" "$@"
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_list() {
|
vlx_list() {
|
||||||
vlx_guess "$1" || return 1
|
vlx_guess "$1" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" list
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" list
|
||||||
lxc --project "$LX_PROJECT" list
|
lxc --project "$LX_PROJECT" list
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_images() {
|
vlx_images() {
|
||||||
vlx_guess "$1" || return 1
|
vlx_guess "$1" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" image list
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" image list
|
||||||
lxc --project "$LX_PROJECT" image list
|
lxc --project "$LX_PROJECT" image list
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -191,19 +208,22 @@ vlx_up() {
|
|||||||
|
|
||||||
vlx_start() {
|
vlx_start() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" start "$LX_INST"
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" start "$LX_INST"
|
||||||
lxc --project "$LX_PROJECT" start "$LX_INST"
|
lxc --project "$LX_PROJECT" start "$LX_INST"
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_stop() {
|
vlx_stop() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" stop "$LX_INST"
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" stop "$LX_INST"
|
||||||
lxc --project "$LX_PROJECT" stop "$LX_INST"
|
lxc --project "$LX_PROJECT" stop "$LX_INST"
|
||||||
}
|
}
|
||||||
|
|
||||||
vlx_delete() {
|
vlx_delete() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" delete --force --interactive "$LX_INST"
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" delete --force --interactive "$LX_INST"
|
||||||
lxc --project "$LX_PROJECT" delete --force --interactive "$LX_INST"
|
lxc --project "$LX_PROJECT" delete --force --interactive "$LX_INST"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -224,7 +244,8 @@ vlx_status() {
|
|||||||
|
|
||||||
vlx_restart() {
|
vlx_restart() {
|
||||||
vlx_guess "$@" || return 1
|
vlx_guess "$@" || return 1
|
||||||
echo lxc --project "$LX_PROJECT" restart "$LX_INST"
|
[ "$show_cl" = "yes" ] &&
|
||||||
|
echo lxc --project "$LX_PROJECT" restart "$LX_INST"
|
||||||
lxc --project "$LX_PROJECT" restart "$LX_INST"
|
lxc --project "$LX_PROJECT" restart "$LX_INST"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user