Last active
August 29, 2015 14:00
-
-
Save SteveMarshall/11343037 to your computer and use it in GitHub Desktop.
Puppetised builddep for nginx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# `apt` is puppetlabs/apt v1.4.2 | |
include '::apt' | |
apt::source { 'nginx': | |
location => "http://nginx.org/packages/ubuntu", | |
repos => 'nginx', | |
key => '7BD9BF62', | |
key_source => 'http://nginx.org/keys/nginx_signing.key', | |
} | |
apt::builddep { 'nginx': | |
require => Apt::Source['nginx'], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Per @nickstenning’s comments on Twitter, this appears to be “broken by design”, and the best solution for now is to copy and paste the exec from apt::builddep into my code. Le sigh.