[EVO] Ne pas différencier les machines redondées
This commit is contained in:
parent
749fd0b122
commit
864a234a54
@ -24,16 +24,11 @@ show_usage() {
|
||||
}
|
||||
|
||||
move_ct() {
|
||||
# SI la machine est redondée (nom finissant par un charactère)
|
||||
if [[ "$(lxc list --columns n --format csv $ct | awk '/[0-9][a-z]$/')" == "${ct}" ]]; then
|
||||
echo " move: skipped"
|
||||
else
|
||||
echo " move: pending"
|
||||
lxc move --target $target $ct 2> /dev/null
|
||||
lxc_move_result=$?
|
||||
echo -n " move: "
|
||||
[[ $? -eq 0 ]] && echo "success" || echo "failed"
|
||||
fi
|
||||
echo " move: pending"
|
||||
lxc move --target $target $ct 2> /dev/null
|
||||
lxc_move_result=$?
|
||||
echo -n " move: "
|
||||
[[ $? -eq 0 ]] && echo "success" || echo "failed"
|
||||
}
|
||||
|
||||
migrate_ct() {
|
||||
|
Loading…
Reference in New Issue
Block a user