diff options
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index b6fc212ebe..983f7514c7 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -1505,6 +1505,9 @@ class BaseConfig(object): | |||
1505 | cmd = "%s %s" % (self.qemu_opt, kernel_opts) | 1505 | cmd = "%s %s" % (self.qemu_opt, kernel_opts) |
1506 | cmds = shlex.split(cmd) | 1506 | cmds = shlex.split(cmd) |
1507 | logger.info('Running %s\n' % cmd) | 1507 | logger.info('Running %s\n' % cmd) |
1508 | with open('/proc/uptime', 'r') as f: | ||
1509 | uptime_seconds = f.readline().split()[0] | ||
1510 | logger.info('Host uptime: %s\n' % uptime_seconds) | ||
1508 | pass_fds = [] | 1511 | pass_fds = [] |
1509 | if self.taplock_descriptor: | 1512 | if self.taplock_descriptor: |
1510 | pass_fds = [self.taplock_descriptor.fileno()] | 1513 | pass_fds = [self.taplock_descriptor.fileno()] |
@@ -1528,6 +1531,9 @@ class BaseConfig(object): | |||
1528 | signal.signal(signal.SIGTERM, signal.SIG_IGN) | 1531 | signal.signal(signal.SIGTERM, signal.SIG_IGN) |
1529 | 1532 | ||
1530 | logger.info("Cleaning up") | 1533 | logger.info("Cleaning up") |
1534 | with open('/proc/uptime', 'r') as f: | ||
1535 | uptime_seconds = f.readline().split()[0] | ||
1536 | logger.info('Host uptime: %s\n' % uptime_seconds) | ||
1531 | if self.cleantap: | 1537 | if self.cleantap: |
1532 | cmd = ('sudo', self.qemuifdown, self.tap, self.bindir_native) | 1538 | cmd = ('sudo', self.qemuifdown, self.tap, self.bindir_native) |
1533 | logger.debug('Running %s' % str(cmd)) | 1539 | logger.debug('Running %s' % str(cmd)) |