# # Copyright:: Copyright (c) 2016 GitLab Inc # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. resource_name :env_dir provides :env_dir actions :create default_action :create unified_mode true property :variables, Hash, default: {} action :create do # Cleaning up non-existent variables if ::File.directory?(new_resource.name) existing_files = Dir.entries(new_resource.name).select { |f| ::File.file?(::File.join(new_resource.name, f)) } deleted_env_vars = existing_files - new_resource.variables.keys - %w(. ..) deleted_env_vars.each do |deleted_var| file ::File.join(new_resource.name, deleted_var) do sensitive true action :delete end end end directory new_resource.name do recursive true end new_resource.variables.each do |key, value| file ::File.join(new_resource.name, key) do sensitive true content value.to_s end end end