Last active
December 15, 2015 04:50
Revisions
-
graste revised this gist
Jun 21, 2013 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Vagrant::Config.run do |config| ... puppet.options = "--verbose --debug --graph" end end end ``` Host-CLI: -
graste revised this gist
Jun 21, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Use ```--graph``` as option for ```puppet``` in ```Vagrantfile```: ``` Vagrant::Config.run do |config| config.vm.define :devbox do |devbox| ... devbox.vm.customize ["modifyvm", :id, "--name", "trololo-devbox"] ... devbox.vm.provision :shell, :inline => "apt-get update --fix-missing" -
graste revised this gist
Jun 21, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Use ```--graph``` as option for ```puppet``` in ```Vagrantfile```: ``` Vagrant::Config.run do |config| config.vm.define :devbox do |devbox| -
graste revised this gist
Jun 21, 2013 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,13 +1,13 @@ Use ```--graph``` as puppet parameter in Vagrantfile: ``` Vagrant::Config.run do |config| config.vm.define :devbox do |devbox| devbox.vm.customize ["modifyvm", :id, "--name", "trololo-devbox"] ... devbox.vm.provision :shell, :inline => "apt-get update --fix-missing" ... devbox.vm.provision :puppet do |puppet| ... puppet.options = "--verbose --debug --graph" end -
graste revised this gist
Jun 21, 2013 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ Vagrantfile: ``` Vagrant::Config.run do |config| config.vm.define :devbox do |devbox| config.vm.customize ["modifyvm", :id, "--name", "trololo-devbox"] ... config.vm.provision :shell, :inline => "apt-get update --fix-missing" ... @@ -14,6 +16,6 @@ Vagrantfile: Host-CLI: ``` $ vagrant ssh-config > ssh-config $ ssh -F ssh-config devbox dot -Tsvg -o /tmp/resources.svg /var/lib/puppet/state/graphs/resources.dot $ scp -F ssh-config devbox:/tmp/resources.svg . ``` -
graste revised this gist
Mar 20, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Vagrantfile: end ``` Host-CLI: ``` $ vagrant ssh-config > ssh-config $ ssh -F ssh-config cibox dot -Tsvg -o /tmp/resources.svg /var/lib/puppet/state/graphs/resources.dot -
graste renamed this gist
Mar 20, 2013 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
graste created this gist
Mar 20, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ Vagrantfile: ``` config.vm.customize ["modifyvm", :id, "--name", "cibox"] ... config.vm.provision :shell, :inline => "apt-get update --fix-missing" ... cibox.vm.provision :puppet do |puppet| ... puppet.options = "--verbose --debug --graph" end ``` ``` $ vagrant ssh-config > ssh-config $ ssh -F ssh-config cibox dot -Tsvg -o /tmp/resources.svg /var/lib/puppet/state/graphs/resources.dot $ scp -F ssh-config cibox:/tmp/resources.svg . ```