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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant::Config.run do |config| | |
config.vm.box = "precise64" | |
config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
config.vm.provision :puppet do |puppet| | |
# equivalent to; | |
# puppet apply manifests/base.pp |
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
# Given the configuration below. | |
# Expected results list of users in bip.conf. | |
# Actual results in an empty file. | |
# bip.conf | |
<% | |
usernames = scope.lookupvar('users::usernames') | |
fullnames = scope.lookupvar('users::fullnames') | |
-%> |
NewerOlder