|
|
|
@ -44,14 +44,13 @@ basepresent="$(cat "$__object/explorer/basepresent")" |
|
|
|
|
if [ "$state" = "present" ]; then |
|
|
|
|
if [ "$basepresent" = "NONE" ]; then |
|
|
|
|
# IPv6 fix |
|
|
|
|
case "${__target_host}" in |
|
|
|
|
*:*) |
|
|
|
|
my_target_host="[${__target_host}]" |
|
|
|
|
;; |
|
|
|
|
*) |
|
|
|
|
my_target_host="${__target_host}" |
|
|
|
|
;; |
|
|
|
|
esac |
|
|
|
|
echo "${__target_host}" | grep -q -E '^[0-9a-fA-F:]+$' |
|
|
|
|
if [ $? -eq 0 ] |
|
|
|
|
then |
|
|
|
|
my_target_host="[${__target_host}]" |
|
|
|
|
else |
|
|
|
|
my_target_host="${__target_host}" |
|
|
|
|
fi |
|
|
|
|
echo "$__remote_copy" "${jailbase}" "${my_target_host}:${remotebase}" |
|
|
|
|
fi # basepresent=NONE |
|
|
|
|
fi # state=present |
|
|
|
|