summaryrefslogtreecommitdiff
path: root/manifests/ssl
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/ssl')
-rw-r--r--manifests/ssl/debian.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/ssl/debian.pp b/manifests/ssl/debian.pp
new file mode 100644
index 0000000..10b1631
--- /dev/null
+++ b/manifests/ssl/debian.pp
@@ -0,0 +1,9 @@
+class apache::ssl::debian inherits apache::ssl::base {
+ line { 'apache_debian_ssl_port':
+ file => "${apache::debian::config_dir}/ports.conf",
+ line => "Listen 443",
+ ensure => present,
+ require => Package['apache'],
+ notify => Service['apache'],
+ }
+}