You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2021/10/13 14:03:17 UTC

[whimsy] branch master updated: add header

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 21c3dc8  add header
21c3dc8 is described below

commit 21c3dc87a4e2b8edcac47af391f5dc78a44ec869
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Wed Oct 13 10:03:09 2021 -0400

    add header
---
 config/whimsy.conf | 4 ++++
 tools/mkconf.rb    | 7 +++++++
 2 files changed, 11 insertions(+)

diff --git a/config/whimsy.conf b/config/whimsy.conf
index 329473b..bbff78e 100644
--- a/config/whimsy.conf
+++ b/config/whimsy.conf
@@ -1,3 +1,7 @@
+# generated by https://github.com/apache/whimsy/blob/master/tools/mkconf.rb
+# do not edit directly.  Based on definitions found in
+# https://github.com/apache/infrastructure-p6
+#
 # ************************************
 # Vhost template in module puppetlabs-apache
 # Managed by Puppet
diff --git a/tools/mkconf.rb b/tools/mkconf.rb
index fb8404b..eae9fe3 100755
--- a/tools/mkconf.rb
+++ b/tools/mkconf.rb
@@ -15,6 +15,13 @@ else
   conf = STDIN.read
 end
 
+conf = <<-EOF + conf
+# generated by https://github.com/apache/whimsy/blob/master/tools/mkconf.rb
+# do not edit directly.  Based on definitions found in
+# https://github.com/apache/infrastructure-p6
+#
+EOF
+
 conf.sub! 'VirtualHost *:443', 'VirtualHost *:80'
 conf.sub! /ServerName whimsy(.*?)\.apache\.org/, 'ServerName whimsy.local'