This file contains 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
INFO warden: Calling action: #<Vagrant::Action::Builtin::Provision:0x000001022bf040> | |
ERROR warden: Error occurred: can't convert Vagrant::Config::V2::DummyConfig to String (Vagrant::Config::V2::DummyConfig#to_str gives Vagrant::Config::V2::DummyConfig) |
This file contains 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
config.vm.provision :puppet do |puppet| | |
puppet.manifests_path = 'puppet/manifests' | |
puppet.manifest_file = 'site.pp' | |
puppet.module_path = 'puppet/modules' | |
end |
This file contains 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
curl -sSL https://raw.github.com/inin-apac/puppet-me/master/install/osx-client.sh | bash |
This file contains 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
[9438] $ VAGRANT_LOG=debug bundle exec vagrant box list | |
VMWare fusion gem is in /Library/Ruby/Gems/2.0.0/gems/vagrant-vmware-fusion-3.2.5 | |
Your Gemfile lists the gem vagrant-vmware-fusion (>= 0) more than once. | |
You should probably keep only one of them. | |
While it's not a problem now, it could cause errors if you change the version of just one of them later. | |
VMWare fusion gem is in /Library/Ruby/Gems/2.0.0/gems/vagrant-vmware-fusion-3.2.5 | |
VMWare fusion gem is in /Library/Ruby/Gems/2.0.0/gems/vagrant-vmware-fusion-3.2.5 | |
Vagrant appears to be running in a Bundler environment. Your | |
existing Gemfile will be used. Vagrant will not auto-load any plugins | |
installed with `vagrant plugin`. Vagrant will autoload any plugins in |
This file contains 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
#!/usr/bin/env bash | |
set -e | |
[ -n "$RBENV_DEBUG" ] && set -x | |
program="${0##*/}" | |
if [ "$program" = "ruby" ]; then | |
for arg; do | |
case "$arg" in | |
-e* | -- ) break ;; | |
*/* ) |
This file contains 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
setlocal EnableDelayedExpansion EnableExtensions | |
title Configuring Windows Remote Management... | |
cmd /c net stop winrm | |
cmd /c winrm quickconfig -q | |
cmd /c winrm quickconfig -transport:http | |
cmd /c winrm set winrm/config @{MaxTimeoutms="1800000"} | |
cmd /c winrm set winrm/config/winrs @{MaxMemoryPerShellMB="2048"} | |
cmd /c winrm set winrm/config/service @{AllowUnencrypted="true"} | |
cmd /c winrm set winrm/config/service/auth @{Basic="true"} |
This file contains 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
# IC Server Installation | |
# | |
# | |
<# # Documentation {{{ | |
.Synopsis | |
Installs CIC | |
#> # }}} | |
[CmdletBinding()] | |
Param( |
This file contains 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
2015/05/08 01:19:42 ui: [1;32m==> vmware-windows-iso: Provisioning with shell script: ./scripts/install-icserver.ps1[0m | |
2015/05/08 01:19:42 packer-provisioner-powershell: 2015/05/08 01:19:42 Opening ./scripts/install-icserver.ps1 for reading | |
2015/05/08 01:19:42 packer-provisioner-powershell: 2015/05/08 01:19:42 Building elevated command wrapper for: $env:PACKER_BUILDER_TYPE="vmware-windows-iso"; $env:PACKER_BUILD_NAME="vmware-windows-iso"; c:/Windows/Temp/script.ps1 | |
2015/05/08 01:19:42 packer-provisioner-powershell: 2015/05/08 01:19:42 Uploading elevated shell wrapper for command [$env:PACKER_BUILDER_TYPE="vmware-windows-iso"; $env:PACKER_BUILD_NAME="vmware-windows-iso"; c:/Windows/Temp/script.ps1] to [${env:TEMP}\packer-elevated-shell-554b909e-d465-c8eb-ca78-f5f3426d9561.ps1] from [/var/folders/z1/891cdmz97njf2q3w00kkv4b40000gn/T/packer-elevated-shell.ps1857974159] | |
2015/05/08 01:19:42 packer-provisioner-powershell: 2015/05/08 01:19:42 [INFO] 2590 bytes written for 'uploadData' | |
2015/05/08 01:19:42 [INFO] 25 |
This file contains 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
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
cinst -y classic-shell | |
cinst -y 7zip | |
cinst -y becyicongrabber | |
cinst -y ConEmu | |
cinst -y git | |
cinst -y ncftp | |
cinst -y TotalCommander | |
cinst -y vim | |
cinst -y webdeploy |
This file contains 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
[CmdletBinding()] | |
param( | |
[Parameter(Position=0, Mandatory=$true)] | |
[ValidateSet('386', 'amd64', 'arm')] | |
[string[]]$Arch=('386', 'amd64', 'arm'), | |
[Parameter(Position=1, Mandatory=$true)] | |
[ValidateSet('linux', 'darwin', 'windows', 'freesd', 'openbsd')] | |
[string[]]$OS=('linux', 'darwin', 'windows', 'freebsd', 'openbsd'), | |
[Parameter(Position=2, Mandatory=$false)] | |
[switch]$Deploy |
OlderNewer