Skip to content

Commit

Permalink
Updated to use the 'mfellows/windows2012r2' box which is compact and …
Browse files Browse the repository at this point in the history
…already contains chocolatey and Seek DSC resources (#14)
  • Loading branch information
mefellows committed Jan 12, 2015
1 parent b1aa952 commit 6e57741
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions development/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# please see the online documentation at vagrantup.com.

# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "kensykora/windows_2012_r2_standard"
config.vm.box = "mfellows/windows2012r2"

config.vm.guest = :windows
config.vm.communicator = "winrm"
Expand Down Expand Up @@ -45,36 +45,36 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# environment to enable local modules to be addressed.
#
# @return [Array] Set of relative module paths.
dsc.module_path = ["manifests", "modules"]
dsc.module_path = ["modules"]

# The path relative to `dsc.manifests_path` pointing to the Configuration file
dsc.configuration_file = "manifests/MyWebsite.ps1"
dsc.configuration_file = "MyWebsite.ps1"

# The Configuration Command to run. Assumed to be the same as the `dsc.configuration_file`
# (sans extension) if not provided.
dsc.configuration_name = "MyWebsite"

# Commandline arguments to the Configuration run
# Set of Parameters to pass to the DSC Configuration.
dsc.configuration_params = {"-MachineName" => "localhost"}

# Relative path to a pre-generated MOF file.
#
# Path is relative to the folder containing the Vagrantfile.
#dsc.mof_path = "mof"
# dsc.mof_path = "mof"

# Relative path to the folder containing the root Configuration manifest file.
# Defaults to 'manifests'.
#
# Path is relative to the folder containing the Vagrantfile.
# dsc.manifests_path = "manifests"
dsc.manifests_path = "manifests"
dsc.configuration_params = {"-MachineName" => "localhost"}

# The type of synced folders to use when sharing the data
# required for the provisioner to work properly.
#
# By default this will use the default synced folder type.
# For example, you can set this to "nfs" to use NFS synced folders.
#dsc.synced_folder_type = ""
# dsc.synced_folder_type = ""

# Temporary working directory on the guest machine.
# dsc.temp_dir = "c:/tmp/vagrant-dsc"
Expand Down

0 comments on commit 6e57741

Please sign in to comment.