We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 81ce2ab + 92cedeb commit 436bf2fCopy full SHA for 436bf2f
1 file changed
controls/os_spec.rb
@@ -254,7 +254,10 @@
254
its(:content) { should match 'install jffs2 /bin/true' }
255
its(:content) { should match 'install hfs /bin/true' }
256
its(:content) { should match 'install hfsplus /bin/true' }
257
- its(:content) { should match 'install squashfs /bin/true' }
+ # Ubuntu Snaps need SquashFS to function
258
+ unless service('snapd').running?
259
+ its(:content) { should match 'install squashfs /bin/true' }
260
+ end
261
its(:content) { should match 'install udf /bin/true' }
262
# if efi is active, do not disable vfat. otherwise the system
263
# won't boot anymore
0 commit comments