# frozen_string_literal: true # # Cookbook:: aws-parallelcluster # Recipe:: ephemeral_drives # # Copyright:: 2013-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. unified_mode true default_action :setup action :setup do package "install Logical Volume Manager 2 utilities" do package_name "lvm2" retries 3 retry_delay 5 end cookbook_file 'setup-ephemeral-drives.sh' do source 'setup-ephemeral-drives.sh' cookbook 'aws-parallelcluster-environment' path '/usr/local/sbin/setup-ephemeral-drives.sh' owner 'root' group 'root' mode '0744' end template 'setup-ephemeral.service' do source 'setup-ephemeral.service.erb' cookbook 'aws-parallelcluster-environment' path '/etc/systemd/system/setup-ephemeral.service' owner 'root' group 'root' mode '0644' variables(network_target: network_target) end end