mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
a5309ea392
Signed-off-by: Ryan Davis <zenspider@chef.io>
25 lines
629 B
Ruby
25 lines
629 B
Ruby
#!/usr/bin/env ruby
|
|
# ^syntax detection
|
|
|
|
forge "https://forgeapi.puppetlabs.com"
|
|
|
|
# use dependencies defined in metadata.json
|
|
metadata
|
|
|
|
# use dependencies defined in Modulefile
|
|
# modulefile
|
|
|
|
# A module from the Puppet Forge
|
|
# mod 'puppetlabs-stdlib'
|
|
|
|
# A module from git
|
|
# mod 'puppetlabs-ntp',
|
|
# :git => 'git://github.com/puppetlabs/puppetlabs-ntp.git'
|
|
|
|
# A module from a git branch/tag
|
|
# mod 'puppetlabs-apt',
|
|
# :git => 'https://github.com/puppetlabs/puppetlabs-apt.git',
|
|
# :ref => '1.4.x'
|
|
|
|
# A module from Github pre-packaged tarball
|
|
# mod 'puppetlabs-apache', '0.6.0', :github_tarball => 'puppetlabs/puppetlabs-apache'
|