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.
This commit is contained in:
Scott Moser 2013-01-28 11:32:45 -05:00
parent 8b20d2c2db
commit 096ed74ae2

View File

@ -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']