From ae299a57c0b42df7432e47e9de906eabad5f7ba0 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Wed, 18 Apr 2018 20:36:05 +0000 Subject: [PATCH] Clean up OpenStack-isms Use an IETF recommended domain name (example.org) in examples and class parameter defaults instead of openstack.org. The only default behavior change is for sender_email_address and the one site where the default value would have been viable already has an override in place to the same string anyway so this should result in no effective behavior change. Change-Id: I3e1bbb0bf4bfdd71f56cd429e890e90f2881bec5 --- README.md | 4 ++-- manifests/application.pp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 37aea8f..aa1f390 100644 --- a/README.md +++ b/README.md @@ -89,10 +89,10 @@ will be saved, however that's not strictly necessary. node default { class { 'storyboard::cert': $ssl_cert_content = undef, - $ssl_cert = '/etc/ssl/certs/storyboard.openstack.org.pem', + $ssl_cert = '/etc/ssl/certs/storyboard.example.org.pem', $ssl_key_content = undef, - $ssl_key = '/etc/ssl/private/storyboard.openstack.org.key', + $ssl_key = '/etc/ssl/private/storyboard.example.org.key', $ssl_ca_content = undef, $ssl_ca = '/etc/ssl/certs/ca.pem' diff --git a/manifests/application.pp b/manifests/application.pp index ad8aa30..413f969 100644 --- a/manifests/application.pp +++ b/manifests/application.pp @@ -57,7 +57,7 @@ class storyboard::application ( $enable_cron = 'True', $enable_email = 'True', - $sender_email_address = 'no-reply@storyboard.openstack.org', + $sender_email_address = 'no-reply@storyboard.example.org', $smtp_host = 'localhost', $smtp_port = 25,