diff options
author | Alexandr Kravchenko <sasha121196@mail.ru> | 2021-09-01 22:01:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-01 14:01:09 -0500 |
commit | f6c71fd758a3589ac5f62fd251d60b00edf5bb1c (patch) | |
tree | f1c176794a4c700ea8b6a0e745360c493e373050 /tests/unittests/test_cli.py | |
parent | db72c841c2ec0d94d366df7fa623e82e91e2201c (diff) | |
download | vyos-cloud-init-f6c71fd758a3589ac5f62fd251d60b00edf5bb1c.tar.gz vyos-cloud-init-f6c71fd758a3589ac5f62fd251d60b00edf5bb1c.zip |
Add CloudLinux OS support (#1003)
https://www.cloudlinux.com/
Diffstat (limited to 'tests/unittests/test_cli.py')
-rw-r--r-- | tests/unittests/test_cli.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unittests/test_cli.py b/tests/unittests/test_cli.py index a39e1d0c..b8ae9e47 100644 --- a/tests/unittests/test_cli.py +++ b/tests/unittests/test_cli.py @@ -224,9 +224,9 @@ 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, ' - 'eurolinux, fedora, opensuse, photon, rhel, rocky, sles, ubuntu, ' - 'virtuozzo'), + ('**Supported distros:** almalinux, alpine, centos, cloudlinux, ' + 'debian, eurolinux, fedora, opensuse, photon, rhel, rocky, ' + 'sles, ubuntu, virtuozzo'), '**Config schema**:\n **resize_rootfs:** (true/false/noblock)', '**Examples**::\n\n runcmd:\n - [ ls, -l, / ]\n' ] |