[Cloud-init-dev] [Merge] ~prometheanfire/cloud-init:fix-gentoo-init into cloud-init:master

2016-10-18 Thread Scott Moser
The proposal to merge ~prometheanfire/cloud-init:fix-gentoo-init into cloud-init:master has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~prometheanfire/cloud-init/+git/cloud-init/+merge/307969 -- Your team cloud init development team is

Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix-lp1619423 into cloud-init:master

2016-10-18 Thread Ryan Harper
On Tue, Oct 18, 2016 at 2:49 PM, Scott Moser wrote: > $ cat go.sh > #!/bin/sh > deps=" > apt cloud-guest-utils coreutils dash debconf e2fsprogs gnupg2 hostname > ifupdown iproute2 locales lsb-release mount net-tools passwd procps sed > ssh-import-id systemd udev > " > for dep

Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:fix-lp1619423 into cloud-init:master

2016-10-18 Thread Scott Moser
$ cat go.sh #!/bin/sh deps=" apt cloud-guest-utils coreutils dash debconf e2fsprogs gnupg2 hostname ifupdown iproute2 locales lsb-release mount net-tools passwd procps sed ssh-import-id systemd udev " for dep in $deps; do apt-cache show $dep | grep -qi "^Essential:" && r=essential || r=not

Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:systemd_export_tz into cloud-init:master

2016-10-18 Thread Scott Moser
an alternative implementation of this would be for cloud-init to read TZ from os.environ, and if not set, then it could set it in os.environ to :/etc/localtime . Not sure which i prefer. -- https://code.launchpad.net/~raharper/cloud-init/+git/cloud-init/+merge/307722 Your team cloud init

Re: [Cloud-init-dev] [Merge] ~raharper/cloud-init:systemd_export_tz into cloud-init:master

2016-10-18 Thread Ryan Harper
That won;t fix python interpreter from fstat'ing though On Tue, Oct 18, 2016 at 2:51 PM, Scott Moser wrote: > an alternative implementation of this would be for cloud-init to read TZ > from os.environ, and if not set, then it could set it in os.environ to > :/etc/localtime .