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

/media and /mnt mounted as shared for console

This commit is contained in:
Josh Curl
2016-05-04 16:18:24 -07:00
parent a888a57cd9
commit 7241390042
4 changed files with 31 additions and 0 deletions

View File

@@ -15,6 +15,11 @@ if arch != 'amd64':
suffix = '_' + arch
busybox_image = {'amd64': 'busybox',
'arm': 'armhf/busybox',
'arm64': 'aarch64/busybox'}[arch]
def iter_lines(s):
return it.imap(str.rstrip, iter(s.readline, ''))