Skip to content

Instantly share code, notes, and snippets.

@jruels
Created August 20, 2014 16:28
Show Gist options
  • Save jruels/ad06cf47d98af652f8bf to your computer and use it in GitHub Desktop.
Save jruels/ad06cf47d98af652f8bf to your computer and use it in GitHub Desktop.
Recipe: <Dynamically Defined Resource>
* execute[sysctl-p] action run
================================================================================
Error executing action `run` on resource 'execute[sysctl-p]'
================================================================================
Mixlib::ShellOut::ShellCommandFailed
------------------------------------
Expected process to exit with [0], but received '255'
---- Begin output of sysctl -p /etc/sysctl.d/40-rabbitmq.conf ----
STDOUT:
STDERR: error: "net.ipv4.tcp_keepalive_time" is an unknown key
error: "net.ipv4.tcp_keepalive_intvl" is an unknown key
error: "net.ipv4.tcp_keepalive_probes" is an unknown key
---- End output of sysctl -p /etc/sysctl.d/40-rabbitmq.conf ----
Ran sysctl -p /etc/sysctl.d/40-rabbitmq.conf returned 255
Resource Declaration:
---------------------
# In /var/chef/cache/cookbooks/sysctl/providers/multi.rb
24: execute "sysctl-p" do
25: command "sysctl -p #{fullname}"
26: action :nothing
27: end
28:
Compiled Resource:
------------------
# Declared in /var/chef/cache/cookbooks/sysctl/providers/multi.rb:24:in `block in class_from_file'
execute("sysctl-p") do
action [:nothing]
retries 0
retry_delay 2
command "sysctl -p /etc/sysctl.d/40-rabbitmq.conf"
backup 5
returns 0
cookbook_name "osops-utils"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment