Things managed by librarian-puppet go in shared/
This commit is contained in:
parent
dd906157e1
commit
a9c14be398
5 changed files with 15 additions and 70 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -7,3 +7,5 @@
|
|||
/tmp
|
||||
/vendor/cache
|
||||
/vendor/puppet/cache
|
||||
/shared/*
|
||||
!/shared/README.md
|
||||
|
|
10
Puppetfile
10
Puppetfile
|
@ -1,5 +1,7 @@
|
|||
%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename|
|
||||
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
|
||||
end
|
||||
# This doesn't work, and so it doesn't belong in master. ~ jbarnette
|
||||
|
||||
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
||||
# %w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename|
|
||||
# mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
|
||||
# end
|
||||
|
||||
# mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
|
||||
|
|
|
@ -1,68 +1,2 @@
|
|||
GITHUBTARBALL
|
||||
remote: boxen/puppet-boxen
|
||||
specs:
|
||||
boxen (0.0.1.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-git
|
||||
specs:
|
||||
git (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-homebrew
|
||||
specs:
|
||||
homebrew (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-hub
|
||||
specs:
|
||||
hub (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-inifile
|
||||
specs:
|
||||
inifile (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-nodejs
|
||||
specs:
|
||||
nodejs (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-nvm
|
||||
specs:
|
||||
nvm (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-rbenv
|
||||
specs:
|
||||
rbenv (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-ruby
|
||||
specs:
|
||||
ruby (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-sudo
|
||||
specs:
|
||||
sudo (0.0.1)
|
||||
|
||||
GITHUBTARBALL
|
||||
remote: boxen/puppet-xcode
|
||||
specs:
|
||||
xcode (0.0.1)
|
||||
|
||||
DEPENDENCIES
|
||||
boxen (= 0.0.1.1)
|
||||
git (= 0.0.1)
|
||||
homebrew (= 0.0.1)
|
||||
hub (= 0.0.1)
|
||||
inifile (= 0.0.1)
|
||||
nodejs (= 0.0.1)
|
||||
nvm (= 0.0.1)
|
||||
rbenv (= 0.0.1)
|
||||
ruby (= 0.0.1)
|
||||
sudo (= 0.0.1)
|
||||
xcode (= 0.0.1)
|
||||
|
||||
|
|
|
@ -17,3 +17,7 @@ export CC=gcc
|
|||
# Bundle install unless we're already up to date.
|
||||
|
||||
bundle install --binstubs bin --path .bundle --quiet "$@"
|
||||
|
||||
# Install all our Puppet dependencies.
|
||||
|
||||
bin/librarian-puppet install --path=shared
|
||||
|
|
3
shared/README.md
Normal file
3
shared/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Shared Puppet Modules
|
||||
|
||||
This module directory is managed by librarian-puppet.
|
Loading…
Reference in a new issue