diff options
-rwxr-xr-x | job-cfg/chroot-installation.yaml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/job-cfg/chroot-installation.yaml.py b/job-cfg/chroot-installation.yaml.py index 15d1291f..45b4b761 100755 --- a/job-cfg/chroot-installation.yaml.py +++ b/job-cfg/chroot-installation.yaml.py @@ -89,10 +89,10 @@ def is_target_in_distro(distro, target): # sugar has been removed from jessie and thus education-desktop-sugar has been removed from jessie and sid... elif distro in ('sid', 'jessie', 'stretch') and target == 'education-desktop-sugar': return False - # education-ltsp-server and education-roaming-workstation are only availble since stretch… + # education-ltsp-server and education-roaming-workstation are only availble since stretch… elif distro in ('wheezy', 'jessie') and target in ('education-ltsp-server', 'education-roaming-workstation'): return False - # education-thin-client-server is obsolete since stretch… + # education-thin-client-server is obsolete since stretch… elif distro in ('sid', 'buster') and target == 'education-thin-client-server': return False return True |