Prefer immutable structures

This commit is contained in:
Joshua Harlow 2014-10-15 11:40:37 -07:00
parent e8f9ab7c0e
commit 3d299e114e

View File

@ -28,17 +28,17 @@ from cloudinit import util
RUBY_VERSION_DEFAULT = "1.8"
CHEF_DIRS = [
CHEF_DIRS = tuple([
'/etc/chef',
'/var/log/chef',
'/var/lib/chef',
'/var/cache/chef',
'/var/backups/chef',
'/var/run/chef',
]
REQUIRED_CHEF_DIRS = [
])
REQUIRED_CHEF_DIRS = tuple([
'/etc/chef',
]
])
OMNIBUS_URL = "https://www.opscode.com/chef/install.sh"
OMNIBUS_URL_RETRIES = 5