Skip to content

Instantly share code, notes, and snippets.

@hhanh00
Created June 19, 2016 14:36
Show Gist options
  • Save hhanh00/c80cd13602f1c652dd85791468852958 to your computer and use it in GitHub Desktop.
Save hhanh00/c80cd13602f1c652dd85791468852958 to your computer and use it in GitHub Desktop.
Chef cookbook for installing dub/dmd
d_apt = template '/etc/apt/sources.list.d/d-apt.list' do
source 'd-apt.list.erb'
notifies :run, 'execute[update-d-home]', :immediately
end
execute 'update-d-home' do
command 'apt-get update && apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring && apt-get update'
only_if { d_apt.updated_by_last_action? }
end
package 'dmd-bin'
package 'dub'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment