Please enable JavaScript.
Coggle requires JavaScript to display documents.
Chef Lec 19, 20 - Coggle Diagram
Chef Lec 19, 20
-
-
-
-
-
-
Attributes code
Example
file '/basicinfo' do
Content "This is to get attributes
HOSTNAME: #{node['hostname']}
IPADDRESS: #{node['ipaddress']}
CPU: #{node['cpu']['o']['mhz']}
MEMORY: #{node['memeory']['total']}"
Owner "root"
group "root"
action :create
end
-
-
-
-
-
-