diff options
| -rwxr-xr-x | scripts/runqemu | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 0039b8359e..311fbebdf4 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
| @@ -1098,7 +1098,7 @@ class BaseConfig(object): | |||
| 1098 | if self.serialstdio: | 1098 | if self.serialstdio: |
| 1099 | logger.info("Interrupt character is '^]'") | 1099 | logger.info("Interrupt character is '^]'") |
| 1100 | cmd = "stty intr ^]" | 1100 | cmd = "stty intr ^]" |
| 1101 | subprocess.call(cmd, shell=True) | 1101 | subprocess.check_call(cmd, shell=True) |
| 1102 | 1102 | ||
| 1103 | first_serial = "" | 1103 | first_serial = "" |
| 1104 | if not re.search("-nographic", self.qemu_opt): | 1104 | if not re.search("-nographic", self.qemu_opt): |
| @@ -1146,7 +1146,7 @@ class BaseConfig(object): | |||
| 1146 | if self.cleantap: | 1146 | if self.cleantap: |
| 1147 | cmd = 'sudo %s %s %s' % (self.qemuifdown, self.tap, self.bindir_native) | 1147 | cmd = 'sudo %s %s %s' % (self.qemuifdown, self.tap, self.bindir_native) |
| 1148 | logger.info('Running %s' % cmd) | 1148 | logger.info('Running %s' % cmd) |
| 1149 | subprocess.call(cmd, shell=True) | 1149 | subprocess.check_call(cmd, shell=True) |
| 1150 | if self.lock_descriptor: | 1150 | if self.lock_descriptor: |
| 1151 | logger.info("Releasing lockfile for tap device '%s'" % self.tap) | 1151 | logger.info("Releasing lockfile for tap device '%s'" % self.tap) |
| 1152 | self.release_lock() | 1152 | self.release_lock() |
| @@ -1155,11 +1155,11 @@ class BaseConfig(object): | |||
| 1155 | logger.info("Shutting down the userspace NFS server...") | 1155 | logger.info("Shutting down the userspace NFS server...") |
| 1156 | cmd = "runqemu-export-rootfs stop %s" % self.rootfs | 1156 | cmd = "runqemu-export-rootfs stop %s" % self.rootfs |
| 1157 | logger.info('Running %s' % cmd) | 1157 | logger.info('Running %s' % cmd) |
| 1158 | subprocess.call(cmd, shell=True) | 1158 | subprocess.check_call(cmd, shell=True) |
| 1159 | 1159 | ||
| 1160 | if self.saved_stty: | 1160 | if self.saved_stty: |
| 1161 | cmd = "stty %s" % self.saved_stty | 1161 | cmd = "stty %s" % self.saved_stty |
| 1162 | subprocess.call(cmd, shell=True) | 1162 | subprocess.check_call(cmd, shell=True) |
| 1163 | 1163 | ||
| 1164 | if self.clean_nfs_dir: | 1164 | if self.clean_nfs_dir: |
| 1165 | logger.info('Removing %s' % self.rootfs) | 1165 | logger.info('Removing %s' % self.rootfs) |
