diff options
author | Louis Abel <nazunalika@users.noreply.github.com> | 2021-05-25 06:25:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-25 08:25:41 -0500 |
commit | 7c1d27b8836c266f6db1e179b98ef32effeb750e (patch) | |
tree | 0a7f4897b000ee0c1f7a1b16c5d2b06269fd25fd /tests | |
parent | c8db603218dd56123e43857d81f5eae5f66618f1 (diff) | |
download | vyos-cloud-init-7c1d27b8836c266f6db1e179b98ef32effeb750e.tar.gz vyos-cloud-init-7c1d27b8836c266f6db1e179b98ef32effeb750e.zip |
Add Rocky Linux support to cloud-init (#906)
Rocky Linux is a RHEL-compatible distribution so all changes that have
been made should be trivial.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unittests/test_cli.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unittests/test_cli.py b/tests/unittests/test_cli.py index f5cf514d..fbc6ec11 100644 --- a/tests/unittests/test_cli.py +++ b/tests/unittests/test_cli.py @@ -224,7 +224,8 @@ class TestCLI(test_helpers.FilesystemMockingTestCase): self._call_main(['cloud-init', 'devel', 'schema', '--docs', 'all']) expected_doc_sections = [ '**Supported distros:** all', - '**Supported distros:** almalinux, alpine, centos, debian, fedora', + ('**Supported distros:** almalinux, alpine, centos, debian, ' + 'fedora, opensuse, rhel, rocky, sles, ubuntu'), '**Config schema**:\n **resize_rootfs:** (true/false/noblock)', '**Examples**::\n\n runcmd:\n - [ ls, -l, / ]\n' ] |