code examples for learning how to write secgen modules (standalone puppet)

This commit is contained in:
Z. Cliffe Schreuders
2022-10-27 16:59:18 +01:00
parent f0e4e4bfc9
commit 0969c1983f
1108 changed files with 78191 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# Class: apache::python
#
# This class installs Python for Apache
#
# Parameters:
# - $php_package
#
# Actions:
# - Install Apache Python package
#
# Requires:
#
# Sample Usage:
#
class apache::python {
warning('apache::python is deprecated; please use apache::mod::python')
include ::apache::mod::python
}