Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CHEF
cookbooks
cernvm-fs
Commits
47ce606a
Commit
47ce606a
authored
May 22, 2015
by
Victor Penso
Browse files
Disable customization of Apache for Debian 8 deployments
parent
631e6f67
Changes
2
Hide whitespace changes
Inline
Side-by-side
metadata.rb
View file @
47ce606a
...
@@ -2,9 +2,9 @@ name "cernvm-fs"
...
@@ -2,9 +2,9 @@ name "cernvm-fs"
maintainer
"GSI, HPC Department"
maintainer
"GSI, HPC Department"
maintainer_email
"hpc@gsi.de"
maintainer_email
"hpc@gsi.de"
license
"Apache 2.0"
license
"Apache 2.0"
description
"Deploy and configure
CernVM-FS clients and servers."
description
"Deploy and configure CernVM-FS clients and servers."
long_description
IO
.
read
(
File
.
join
(
File
.
dirname
(
__FILE__
),
'README.md'
))
long_description
IO
.
read
(
File
.
join
(
File
.
dirname
(
__FILE__
),
'README.md'
))
version
"0.1.
0
"
version
"0.1.
1
"
depends
"sys"
depends
"sys"
depends
"apache2"
,
"~> 1.8"
depends
"apache2"
,
"~> 1.8"
supports
"debian"
,
">= 7.0"
supports
"debian"
,
">= 7.0"
recipes/server.rb
View file @
47ce606a
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
#
#
# Author Victor Penso
# Author Victor Penso
#
#
# Copyright 2013, GSI, HPC Department
# Copyright 2013
-2015
, GSI, HPC Department
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
@@ -18,18 +18,24 @@
...
@@ -18,18 +18,24 @@
# limitations under the License.
# limitations under the License.
case
node
.
platform_version
case
node
.
platform_version
when
/^8/
when
/^7.*/
package
'cvmfs-server'
end
include_recipe
'apache2'
include_recipe
'apache2::mod_rewrite'
include_recipe
'apache2::mod_expires'
include_recipe
'apache2'
apache_site
"000-default"
do
include_recipe
'apache2::mod_rewrite'
enable
false
include_recipe
'apache2::mod_expires'
end
when
/^8.*/
# There is no need for a specific Apache configuration,
# Debian default configuration is sufficient...
package
'cvmfs-server'
apache_site
"000-default"
do
enable
false
end
end
# Initialize the repositories unless they exist
# Initialize the repositories unless they exist
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment