diff options
author | Dan Kenigsberg <danken@gmail.com> | 2021-01-20 21:50:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-20 14:50:10 -0500 |
commit | b3abcdc09b894249c8360a030d8aa3b815bd0c20 (patch) | |
tree | 7d77ca0730f6427ce4633ca17196a56e2c226923 /cloudinit/config | |
parent | ad23441d82cb844828022b8b3f55857ca9e4baf8 (diff) | |
download | vyos-cloud-init-b3abcdc09b894249c8360a030d8aa3b815bd0c20.tar.gz vyos-cloud-init-b3abcdc09b894249c8360a030d8aa3b815bd0c20.zip |
Use proper spelling for Red Hat (#778)
The company name has two distinct words.
Signed-off-by: Dan Kenigsberg <danken@redhat.com>
Diffstat (limited to 'cloudinit/config')
-rw-r--r-- | cloudinit/config/cc_resolv_conf.py | 4 | ||||
-rw-r--r-- | cloudinit/config/cc_rh_subscription.py | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cloudinit/config/cc_resolv_conf.py b/cloudinit/config/cc_resolv_conf.py index 7beb11ca..466dad03 100644 --- a/cloudinit/config/cc_resolv_conf.py +++ b/cloudinit/config/cc_resolv_conf.py @@ -14,12 +14,12 @@ Resolv Conf This module is intended to manage resolv.conf in environments where early configuration of resolv.conf is necessary for further bootstrapping and/or where configuration management such as puppet or chef own dns configuration. -As Debian/Ubuntu will, by default, utilize resolvconf, and similarly RedHat +As Debian/Ubuntu will, by default, utilize resolvconf, and similarly Red Hat will use sysconfig, this module is likely to be of little use unless those are configured correctly. .. note:: - For RedHat with sysconfig, be sure to set PEERDNS=no for all DHCP + For Red Hat with sysconfig, be sure to set PEERDNS=no for all DHCP enabled NICs. .. note:: diff --git a/cloudinit/config/cc_rh_subscription.py b/cloudinit/config/cc_rh_subscription.py index 28d62e9d..693317c2 100644 --- a/cloudinit/config/cc_rh_subscription.py +++ b/cloudinit/config/cc_rh_subscription.py @@ -5,15 +5,15 @@ # This file is part of cloud-init. See LICENSE file for license information. """ -RedHat Subscription -------------------- +Red Hat Subscription +-------------------- **Summary:** register red hat enterprise linux based system -Register a RedHat system either by username and password *or* activation and +Register a Red Hat system either by username and password *or* activation and org. Following a sucessful registration, you can auto-attach subscriptions, set the service level, add subscriptions based on pool id, enable/disable yum repositories based on repo id, and alter the rhsm_baseurl and server-hostname -in ``/etc/rhsm/rhs.conf``. For more details, see the ``Register RedHat +in ``/etc/rhsm/rhs.conf``. For more details, see the ``Register Red Hat Subscription`` example config. **Internal name:** ``cc_rh_subscription`` |