diff options
author | Thomas Hervé <thomas@canonical.com> | 2012-09-05 15:17:21 +0200 |
---|---|---|
committer | Thomas Hervé <thomas@canonical.com> | 2012-09-05 15:17:21 +0200 |
commit | f72512d8387b93eaf9c5bb7956361ad16e40376e (patch) | |
tree | c078040eb2926b0e87d5b95060a2d9bac9791822 /cloudinit/config/cc_landscape.py | |
parent | 3a35daa68ca7e6214be3f9c1e33a1cdde5f60eb4 (diff) | |
download | vyos-cloud-init-f72512d8387b93eaf9c5bb7956361ad16e40376e.tar.gz vyos-cloud-init-f72512d8387b93eaf9c5bb7956361ad16e40376e.zip |
Add RUN=1 to the default file
Diffstat (limited to 'cloudinit/config/cc_landscape.py')
-rw-r--r-- | cloudinit/config/cc_landscape.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cloudinit/config/cc_landscape.py b/cloudinit/config/cc_landscape.py index 906a6ff7..d351d941 100644 --- a/cloudinit/config/cc_landscape.py +++ b/cloudinit/config/cc_landscape.py @@ -31,6 +31,7 @@ from cloudinit.settings import PER_INSTANCE frequency = PER_INSTANCE LSC_CLIENT_CFG_FILE = "/etc/landscape/client.conf" +LS_DEFAULT_FILE = "/etc/default/landscape-client" distros = ['ubuntu'] @@ -78,6 +79,8 @@ def handle(_name, cfg, cloud, log, _args): util.write_file(lsc_client_fn, contents.getvalue()) log.debug("Wrote landscape config file to %s", lsc_client_fn) + util.write_file(LS_DEFAULT_FILE, "RUN=1\n") + def merge_together(objs): """ |