From 72798e650b101327bcb50394afc95dc6ef23bd78 Mon Sep 17 00:00:00 2001 From: Eric Tucker Date: Wed, 12 Mar 2014 14:10:44 -0400 Subject: [PATCH] [COOK-4308] - Enable memcache on RHEL, Fedora, and Suse Signed-off-by: Sean OMeara --- .kitchen.yml | 2 +- recipes/default.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.kitchen.yml b/.kitchen.yml index 4c17ca2..6b86dd8 100644 --- a/.kitchen.yml +++ b/.kitchen.yml @@ -56,7 +56,7 @@ platforms: - name: ubuntu-1204 driver_plugin: digitalocean driver_config: - image_id: 1015253 + image_id: 1505447 flavor_id: 63 region_id: 1 ssh_key_ids: <%= ENV['DIGITAL_OCEAN_SSH_KEY_IDS'] %> diff --git a/recipes/default.rb b/recipes/default.rb index c77f7fd..d592b13 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -40,8 +40,8 @@ end service 'memcached' do - action :nothing - supports :status => true, :start => true, :stop => true, :restart => true + action :enable + supports :status => true, :start => true, :stop => true, :restart => true, :enable => true end case node['platform_family']