diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-08-17 13:05:40 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-08-17 13:05:40 -0300 |
commit | 3e438b927c091187971e78a9c6dc151f76f2c4ed (patch) | |
tree | 545414d428e90a327c0a247a4fb28d607f07cbf7 /templates | |
parent | 4384492539dd9a76d8c9b9a16a19e156e2ad13a9 (diff) | |
download | puppet-apache-3e438b927c091187971e78a9c6dc151f76f2c4ed.tar.gz puppet-apache-3e438b927c091187971e78a9c6dc151f76f2c4ed.tar.bz2 |
Default user and group
Diffstat (limited to 'templates')
-rw-r--r-- | templates/apache2.conf.erb.jessie | 4 | ||||
-rw-r--r-- | templates/apache2.conf.erb.wheezy | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/apache2.conf.erb.jessie b/templates/apache2.conf.erb.jessie index 63c4b6a..0fc143b 100644 --- a/templates/apache2.conf.erb.jessie +++ b/templates/apache2.conf.erb.jessie @@ -123,8 +123,8 @@ KeepAliveTimeout 15 MaxRequestsPerChild 0 </IfModule> -User www-data -Group www-data +User <%= default_user %> +Group <%= default_group %> # # AccessFileName: The name of the file to look for in each directory diff --git a/templates/apache2.conf.erb.wheezy b/templates/apache2.conf.erb.wheezy index 122beee..886b305 100644 --- a/templates/apache2.conf.erb.wheezy +++ b/templates/apache2.conf.erb.wheezy @@ -123,8 +123,8 @@ KeepAliveTimeout 15 MaxRequestsPerChild 0 </IfModule> -User www-data -Group www-data +User <%= default_user %> +Group <%= default_group %> # # AccessFileName: The name of the file to look for in each directory |