cookbooks/aws-parallelcluster-slurm/resources/munge/partial/_munge_actions.rb (89 lines of code) (raw):
# frozen_string_literal: true
#
# Cookbook:: aws-parallelcluster-slurm
# Recipe:: install_munge
#
# Copyright:: 2013-2021 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.
# Munge
unified_mode true
default_action :setup
munge_version = node['cluster']['munge']['munge_version']
munge_url = "#{node['cluster']['munge']['base_url']}/munge-#{munge_version}.tar.gz"
munge_tarball = "#{node['cluster']['sources_dir']}/munge-#{munge_version}.tar.gz"
munge_user = node['cluster']['munge']['user']
munge_user_id = node['cluster']['munge']['user_id']
munge_group = node['cluster']['munge']['group']
munge_group_id = node['cluster']['munge']['group_id']
munge_sha256 = node['cluster']['munge']['sha256']
action :setup do
directory node['cluster']['sources_dir'] do
recursive true
end
package_repos 'update package repos' do
action :update
end
build_tools 'Prerequisite: build tools'
install_packages 'prerequisites' do
packages prerequisites
action :install
end
actions = lambda {
action_purge_packages
action_download_source_code
action_compile_and_install
action_set_user_and_group
action_create_required_directories
}
actions.call unless redhat_on_docker?
end
action :purge_packages do
package %w(munge* libmunge*) do
action :purge
end
end
action :download_source_code do
# Get munge tarball
remote_file munge_tarball do
source munge_url
mode '0644'
retries 3
retry_delay 5
checksum munge_sha256
action :create_if_missing
end
end
action :compile_and_install do
# Install munge
bash 'make install' do
user 'root'
group 'root'
cwd Chef::Config[:file_cache_path]
code <<-MUNGE
set -e
tar xf #{munge_tarball}
cd munge-munge-#{munge_version}
./bootstrap
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libdir=#{munge_libdir}
CORES=$(grep processor /proc/cpuinfo | wc -l)
make -j $CORES
make install
MUNGE
not_if "/usr/sbin/munged --version | grep -q munge-#{munge_version} && ls #{munge_libdir}/libmunge*"
end
end
action :set_user_and_group do
# Setup munge group
group munge_group do
comment 'munge group'
gid munge_group_id
system true
end
# Setup munge user
user munge_user do
uid munge_user_id
gid munge_group_id
manage_home false
comment 'munge user'
system true
shell '/sbin/nologin'
end
end
action :create_required_directories do
# Create required directories for munge
dirs = ["/var/log/munge", "/etc/munge", "/var/run/munge"]
dirs.each do |dir|
directory dir do
action :create
owner munge_user
group munge_group
end
end
end