1
0
mirror of https://github.com/rancher/os.git synced 2025-09-06 17:22:34 +00:00

/media and /mnt mounted as shared for console

This commit is contained in:
Darren Shepherd
2016-06-15 16:41:42 -07:00
parent c138ecb54d
commit 924e4b8aae
15 changed files with 68 additions and 2 deletions

View File

@@ -17,6 +17,11 @@ if version is None or version == '' or suffix is None:
raise RuntimeError("Could not get VERSION or SUFFIX from environment")
busybox_image = {'amd64': 'busybox',
'arm': 'armhf/busybox',
'arm64': 'aarch64/busybox'}[arch]
def iter_lines(s):
return it.imap(str.rstrip, iter(s.readline, ''))