File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1010,7 +1010,8 @@ def get_user(image):
10101010 user = 'centos'
10111011 elif 'centos8stream' in image .lower ():
10121012 user = 'centos'
1013- elif 'coreos' in image .lower () or 'rhcos' in image .lower () or 'fcos' in image .lower () or 'ocp-v4' in image :
1013+ elif 'coreos' in image .lower () or 'rhcos' in image .lower () or 'fcos' in image .lower () or 'ocp-v4' in image \
1014+ or 'scos' in image .lower ():
10141015 user = 'core'
10151016 elif 'debian' in image .lower ():
10161017 user = 'debian'
@@ -1633,7 +1634,7 @@ def is_7(image):
16331634
16341635def needs_ignition (image ):
16351636 return 'coreos' in image or 'rhcos' in image or 'fcos' in image or 'fedora-coreos' in image \
1636- or needs_combustion (image ) or 'art-dev' in image
1637+ or needs_combustion (image ) or 'art-dev' in image or 'scos' in image
16371638
16381639
16391640def needs_combustion (image ):
You can’t perform that action at this time.
0 commit comments