Skip to content

Commit

Permalink
Add other OSs
Browse files Browse the repository at this point in the history
  • Loading branch information
hgreebe committed Aug 16, 2024
1 parent da81c1f commit 5e41fe1
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# frozen_string_literal: true

# Copyright:: 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "LICENSE.txt" file accompanying this file.
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
# See the License for the specific language governing permissions and limitations under the License.

provides :enroot, platform: 'amazon' do |node|
node['platform_version'].to_i >= 8
end

use 'partial/_enroot_common.rb'
use 'partial/_enroot_rhel.rb'

def prerequisites
%w(jq fuse-overlayfs squashfs-tools parallel pigz squashfuse zstd)
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# frozen_string_literal: true

# Copyright:: 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License").
# You may not use this file except in compliance with the License.
# A copy of the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "LICENSE.txt" file accompanying this file.
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied.
# See the License for the specific language governing permissions and limitations under the License.

provides :enroot, platform: 'rocky' do |node|
node['platform_version'].to_i >= 8
end

use 'partial/_enroot_common.rb'
use 'partial/_enroot_rhel.rb'

def prerequisites
%w(jq fuse-overlayfs squashfs-tools parallel pigz squashfuse zstd)
end

0 comments on commit 5e41fe1

Please sign in to comment.