diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-10-11 12:52:19 -0700 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2012-10-11 12:52:19 -0700 |
commit | 059a4c45ab2b4439872d138452d6296bfe82be07 (patch) | |
tree | f2a4d25bbbc3d000b5166fd5d280bd3ea2fd61f5 /cloudinit/distros | |
parent | 0f1a2cbe434cba243ce65ff43a88722c2bcf6f2c (diff) | |
download | vyos-cloud-init-059a4c45ab2b4439872d138452d6296bfe82be07.tar.gz vyos-cloud-init-059a4c45ab2b4439872d138452d6296bfe82be07.zip |
Update log message to use the more appropriate 'non-persistently' wording.
Diffstat (limited to 'cloudinit/distros')
-rw-r--r-- | cloudinit/distros/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/distros/__init__.py b/cloudinit/distros/__init__.py index c6427401..bafa69d3 100644 --- a/cloudinit/distros/__init__.py +++ b/cloudinit/distros/__init__.py @@ -132,11 +132,11 @@ class Distro(object): # temporarily (until reboot so it should # not be depended on). Use the write # hostname functions for 'permanent' adjustments. - LOG.debug("Temporarily setting the system hostname to %s", hostname) + LOG.debug("Non-persistently setting the system hostname to %s", hostname) try: util.subp(['hostname', hostname]) except util.ProcessExecutionError: - util.logexc(LOG, ("Failed to temporarily adjust" + util.logexc(LOG, ("Failed to non-persistently adjust" " the system hostname to %s"), hostname) def update_hostname(self, hostname, prev_hostname_fn): |