Skip to content

Instantly share code, notes, and snippets.

@chilcote
Created July 9, 2015 15:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chilcote/3314df7316a967f054cd to your computer and use it in GitHub Desktop.
Save chilcote/3314df7316a967f054cd to your computer and use it in GitHub Desktop.
Vagrantfile to pull softwareupdate -l output
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "osx103"
config.vm.provision "shell", inline: <<-SHELL
softwareupdate -l
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment