diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2020-06-23 09:43:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 09:43:04 -0400 |
commit | ddc4c2de1b1e716b31384af92f5356bfc6136944 (patch) | |
tree | 48277b8c04353575e3a7189440bc1d2da3aeea6e | |
parent | 650d53d656b612442773453813d8417b234d3752 (diff) | |
download | vyos-cloud-init-ddc4c2de1b1e716b31384af92f5356bfc6136944.tar.gz vyos-cloud-init-ddc4c2de1b1e716b31384af92f5356bfc6136944.zip |
cloud-init.service.tmpl: use "rhel" instead of "redhat" (#452)
We use "rhel" consistently everywhere else.
-rw-r--r-- | systemd/cloud-init.service.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/cloud-init.service.tmpl b/systemd/cloud-init.service.tmpl index 9ad3574c..af6d9a8b 100644 --- a/systemd/cloud-init.service.tmpl +++ b/systemd/cloud-init.service.tmpl @@ -10,7 +10,7 @@ After=systemd-networkd-wait-online.service {% if variant in ["ubuntu", "unknown", "debian"] %} After=networking.service {% endif %} -{% if variant in ["centos", "fedora", "redhat"] %} +{% if variant in ["centos", "fedora", "rhel"] %} After=network.service After=NetworkManager.service {% endif %} |