Commit 5010287d authored by Adam Lewenberg's avatar Adam Lewenberg
Browse files

release/001.022

parent 29b1f970
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
release/001.022 (2017-11-02)

    Add include_webauth parameter to give folks the option of not
    including webauth; defaults to true (so, no change to default
    behavior. (adamhl)

release/001.021 (2017-06-07)

    Change parameter from "apache::debian::disable_TLS10R4" to
+7 −2
Original line number Diff line number Diff line
@@ -5,8 +5,13 @@
# WebAuth explicitly include it so that servers that don't need it don't need
# overrides.

class apache {
class apache (
  $include_webauth = true,
)
{
  if ($include_webauth) {
    include webauth
  }

  package { 'apache':
    name   => $osfamily ? {