Commit 9d78e588 authored by Darren Patterson's avatar Darren Patterson
Browse files

rename self-signed class to self_signed for p3

parent 11f586ab
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
release/001.012 (2015-02-18)

    Rename self-signed class to self_signed for puppet3. (darrenp1)

release/001.011 (2014-12-10)

    Template @ fix for local.sample.erb. (adamhl)
+6 −6
Original line number Diff line number Diff line
# Create a self-signed certificate, normally for use with Apache.
# Create a self_signed certificate, normally for use with Apache.
#
# apache::cert::self-signed creates a self-signed certificate with a long
# apache::cert::self_signed creates a self_signed certificate with a long
# expiration time if one doesn't already exist.  The certificate will, by
# default, be symlinked to /etc/ssl/certs/server.pem and the key to
# /etc/ssl/private/server.key.
#
# Syntax:
#
#     apache::cert::self-signed { "<hostname>":
#     apache::cert::self_signed { "<hostname>":
#         ensure     => present,
#         identity   => "<hostname>.stanford.edu",
#         pool       => false,
@@ -18,8 +18,8 @@
#
# Only ensure needs to be specified.  All other parameters default to the
# values given above.  There isn't a way to set the ownership of a certificate
# generated with apache::cert::self-signed currently; it will always be
# root:ssl-cert, with the key mode 0640.  Lifetime for a self-signed
# generated with apache::cert::self_signed currently; it will always be
# root:ssl-cert, with the key mode 0640.  Lifetime for a self_signed
# certificate will always be ten years.
#
# The certificate identity can be overridden with the identity parameter.
@@ -38,7 +38,7 @@
# extensions.  Use a symlink if it needs to be a different name.  To use these
# parameters, stanford-server 69 (Debian version) or later is required.

define apache::cert::self-signed(
define apache::cert::self_signed(
  $ensure,
  $identity   = $fqdn,
  $pool       = false,