Skip to content

Instantly share code, notes, and snippets.

@Tallmaris
Created April 23, 2014 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tallmaris/11222313 to your computer and use it in GitHub Desktop.
Save Tallmaris/11222313 to your computer and use it in GitHub Desktop.
Package {
provider => chocolatey,
}
# ensure that my user is present and an Admin (maybe with a different pwd)
user { $hostuser : # look in Vagrantfile, this is set to the user running the host; clever eh?
ensure => "present",
groups => ["Administrators"],
password => "password"
}
# install notepad++
package { "notepadplusplus" :
ensure => "latest"
}
# other packages
package { "fiddler4" :
ensure => "latest"
}
package { "tortoisesvn" :
ensure => "1.7.12" # this works!!
}
# ... other packages here...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment