Sha256: 5017d1ff7dfc848c5bd0b3545e0973eb6cbeba71f09ca3ef49f50b9cb8b2ac2d
Contents?: true
Size: 1.01 KB
Versions: 20
Compression:
Stored size: 1.01 KB
Contents
# # Cookbook Name:: ubuntu # Recipe:: default # # Copyright 2008-2009, Opscode, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # template "/etc/apt/sources.list" do mode 0644 variables :code_name => node[:lsb][:codename] source "sources.list.erb" end execute 'opscode apt key' do command "cd /etc/apt/ && curl --output opscode.com.gpg.key http://apt.opscode.com/packages@opscode.com.gpg.key && sudo apt-key add opscode.com.gpg.key && apt-get update" creates "/etc/apt/opscode.com.gpg.key" end #include_recipe "apt"
Version data entries
20 entries across 20 versions & 1 rubygems