diff options
author | Scott Moser <smoser@ubuntu.com> | 2013-01-28 11:32:45 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2013-01-28 11:32:45 -0500 |
commit | b602d138686bd6653a67efd61d7c245347d14dcb (patch) | |
tree | 3f6753305a03e31206f27f5223f064e81635d54d /cloudinit/config/cc_resolv_conf.py | |
parent | 7656c36ef194bac61286466f86187ff8affff26e (diff) | |
download | vyos-cloud-init-b602d138686bd6653a67efd61d7c245347d14dcb.tar.gz vyos-cloud-init-b602d138686bd6653a67efd61d7c245347d14dcb.zip |
config/cc_resolv_conf: run PER_INSTANCE rather than PER_ONCE
Quick chat with ctracy indicated that this is just as well run
PER_INSTANCE, and it is more consistent with other things that way.
Diffstat (limited to 'cloudinit/config/cc_resolv_conf.py')
-rw-r--r-- | cloudinit/config/cc_resolv_conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/config/cc_resolv_conf.py b/cloudinit/config/cc_resolv_conf.py index 17c74695..8a460f7e 100644 --- a/cloudinit/config/cc_resolv_conf.py +++ b/cloudinit/config/cc_resolv_conf.py @@ -47,11 +47,11 @@ # -from cloudinit.settings import PER_ONCE +from cloudinit.settings import PER_INSTANCE from cloudinit import templater from cloudinit import util -frequency = PER_ONCE +frequency = PER_INSTANCE distros = ['fedora', 'rhel'] |