~d-info-e/cloud-init:doc-grammar-correction

Last commit made on 2019-02-06
Get this branch:
git clone -b doc-grammar-correction https://git.launchpad.net/~d-info-e/cloud-init
Only do3meli can upload to this branch. If you are do3meli please log in for upload directions.

Branch merges

Branch information

Name:
doc-grammar-correction
Repository:
lp:~d-info-e/cloud-init

Recent commits

5eaeb5f... by do3meli

fix grammar in doc

4895535... by Chad Smith

clean: cloud-init clean should not trace when run from within cloud_dir

Avoid traceback when cloud-init clean is run from within
/var/lib/cloud/ deleted dirs.

LP: #1795508

94a6452... by Paride Legovini

Resolve flake8 comparison and pycodestyle over-ident issues

Fixes:
 - flake8: use ==/!= to compare str, bytes, and int literals
 - pycodestyle: E117 over-indented

8ee294d... by Chad Smith

opennebula: also exclude epochseconds from changed environment vars

In addition to EPOCHREALTIME there is also an EPOCHSECONDS environment
variable that OpenNebula needs to exclude as it is expected to change.
This commit supplements the other exclusion in commit
d1a2fe7307e9cf2251d1f9a666c12d71d3f522d6.

Without this fix, unittests will intermittently fail if
parse_shell_config is run across a timing boundary where the
EPOCHSECONDS changes mid-test.

LP: #1813641

09dcecf... by Robert Schweikert

systemd: Render generator from template to account for system differences.

The systemd generator used had a hard coded path for the location target
file to create. This path does not apply to all distributions.
Make the generator and template to have the path set during build time.

3f12012... by Robert Schweikert

sysconfig: On SUSE, use STARTMODE instead of ONBOOT

ONBOOT is not recognized on openSUSE and SUSE Linux Enterprise,
add the STARTMODE setting

LP: #1799540

7a6ed1a... by Paride Legovini

flake8: use ==/!= to compare str, bytes, and int literals

d1a2fe7... by Chad Smith

opennebula: exclude EPOCHREALTIME as known bash env variable with a delta

This branch is needed to allow cloud-init to sbuild on Ubuntu Disco.

OpenNebula:parse_shell_config tries to do a comparison of bash
environment values, excluding expected environment variables which
are known to change.

Bash on Ubuntu Disco surfaces a new EPOCHREALTIME environment variable
which wasn't in previous bash environments, this var needs to be
ignored by parse_shell_config too.

LP: #1813383

c724805... by Chad Smith

tox: fix disco httpretty dependencies for py37

LP: #1813361

7a46965... by Paride Legovini

run-container: uncomment baseurl in yum.repos.d/*.repo when using a proxy

When using a proxy it is often useful to know in advance which mirrors
are to be contacted, so a whitelist can be set up. This is not easy when
using the yum.conf(5) mirrorlist option, as the retrieved list of mirrors
may change. The repository definition may also specify a canonical mirror
with the 'baseurl' option; this option is often commented out by default
to favor the usage of worldwide mirrors. This patch uncomments 'baseurl'
when an http_proxy is being used, so the canonical mirror is used *in
addition to* the mirrors retrieved from the mirrorlist.