ManageIQ/httpd_configmap_generator

View on GitHub
lib/httpd_configmap_generator/base/pam.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
57%
module HttpdConfigmapGenerator
  class Base
    module Pam
      def configure_pam
        info_msg("Configuring PAM")
        debug_msg("- Creating #{PAM_CONFIG}")
        cp_template(PAM_CONFIG, template_directory)
      end
    end
  end
end