From 75d48bcc46b6527c859b06a25cd40e2382517c00 Mon Sep 17 00:00:00 2001 From: Chris Alfonso Date: Thu, 24 Jul 2008 11:38:46 -0400 Subject: Adding mysql default passwords --- README | 30 ++++++++++++++++++++++++++++++ manifests/init.pp | 5 +++++ 2 files changed, 35 insertions(+) create mode 100644 README create mode 100644 manifests/init.pp diff --git a/README b/README new file mode 100644 index 0000000..7427e5a --- /dev/null +++ b/README @@ -0,0 +1,30 @@ +Passwords +------------ + +This documents the puppet module passwords. + +Purpose +------- + +this class is intended for the storage off all configuration passwords, +cleartext, encrypted etc. + +Classes +------- +passwords + +Branches +-------- +dev +qa +stage +prod + +Access +------ +Access to this module is strictly controlled, no one outside of GIT +operations/systems/networking is allowed read or write access to this +module. + +the non-sensative branches (dev/qa) may be exported external to this +repo for use outside of GIT diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..ae3559c --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,5 @@ +class passwords { + # Mysql default passwords + $mysql_root_password = 'password' + $mysql_replication_password = 'password' +} -- cgit