Skip to content

Commit

Permalink
Merge pull request #175 from dev-sec/ubuntu22
Browse files Browse the repository at this point in the history
only disable SquashFS if it's not needed
  • Loading branch information
schurzi authored Aug 6, 2022
2 parents 81ce2ab + 92cedeb commit 436bf2f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion controls/os_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,10 @@
its(:content) { should match 'install jffs2 /bin/true' }
its(:content) { should match 'install hfs /bin/true' }
its(:content) { should match 'install hfsplus /bin/true' }
its(:content) { should match 'install squashfs /bin/true' }
# Ubuntu Snaps need SquashFS to function
unless service('snapd').running?
its(:content) { should match 'install squashfs /bin/true' }
end
its(:content) { should match 'install udf /bin/true' }
# if efi is active, do not disable vfat. otherwise the system
# won't boot anymore
Expand Down

0 comments on commit 436bf2f

Please sign in to comment.