diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-06-28 19:15:11 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-06-28 19:15:11 -0300 |
commit | 3555c82cabe478a3dc8cabc05d5234db545396a3 (patch) | |
tree | a6a2343c02c2fc7a967c0042454f81093a8c8068 | |
parent | 00f83427809c440c95faecb3ad6cd8c42487b7e0 (diff) | |
download | kvmx-3555c82cabe478a3dc8cabc05d5234db545396a3.tar.gz kvmx-3555c82cabe478a3dc8cabc05d5234db545396a3.tar.bz2 |
Fix: startup_rsync_to_guest checks
-rwxr-xr-x | kvmx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -756,7 +756,7 @@ function kvmx_up { local startup_rsync_to_guest_orig="`echo $item | cut -d ':' -f 2`" local startup_rsync_to_guest_dest="`echo $item | cut -d ':' -f 3`" - if [ -z "$id" ] || [ -z "$poweroff_rsync_to_guest_orig" ] || [ -z "$poweroff_rsync_to_guest_dest" ]; then + if [ -z "$id" ] || [ -z "$startup_rsync_to_guest_orig" ] || [ -z "$startup_rsync_to_guest_dest" ]; then continue fi |