Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/1.20'
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanmei committed Jul 21, 2014
2 parents 203c7a3 + 7772ac4 commit 6caeb75
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v1.20 (July 21st, 2014)

* Update Chocolatey script for Chocolatey 0.9.8.27
* Password for Vagrant user never expires
* Salt installation script
* Microsoft-updates.bat script for Win 7/8

## v1.19 (May 17th, 2014)

* Enable Microsoft Updates by default (#60)
Expand Down Expand Up @@ -85,3 +92,4 @@
## v1.1 (December 17, 2013)

* Initial release, including working Windows 2008 R2 configuration

4 changes: 2 additions & 2 deletions scripts/chocolatey.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" <NUL

<nul set /p ".=;C:\Chocolatey\bin" >> C:\Windows\Temp\PATH
<nul set /p ".=;%ALLUSERSPROFILE%\chocolatey\bin" >> C:\Windows\Temp\PATH
set /p PATH=<C:\Windows\Temp\PATH
setx PATH "%PATH%" /m
setx PATH "%PATH%" /m
11 changes: 11 additions & 0 deletions scripts/salt.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
if not exist "C:\Windows\Temp\salt64.exe" (
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('https://docs.saltstack.com/downloads/Salt-Minion-2014.1.3-1-AMD64-Setup.exe', 'C:\Windows\Temp\salt64.exe')" <NUL
)

:: http://docs.saltstack.com/en/latest/topics/installation/windows.html
c:\windows\temp\salt64.exe /S
:: /master=<yoursaltmaster> /minion-name=<thisminionname>

<nul set /p ".=;C:\salt" >> C:\Windows\Temp\PATH
set /p PATH=<C:\Windows\Temp\PATH
setx PATH "%PATH%" /m
4 changes: 2 additions & 2 deletions windows_7.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"vnc_port_max": 5980,
"floppy_files": [
"./answer_files/7/Autounattend.xml",
"./scripts/dis-updates.ps1",
"./scripts/microsoft-updates.bat",
"./scripts/win-updates.ps1",
"./scripts/openssh.ps1"
],
Expand All @@ -45,7 +45,7 @@
"disk_size": 61440,
"floppy_files": [
"./answer_files/7/Autounattend.xml",
"./scripts/dis-updates.ps1",
"./scripts/microsoft-updates.bat",
"./scripts/win-updates.ps1",
"./scripts/openssh.ps1",
"./scripts/oracle-cert.cer"
Expand Down
2 changes: 2 additions & 0 deletions windows_81.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"vnc_port_max": 5980,
"floppy_files": [
"./answer_files/81/Autounattend.xml",
"./scripts/microsoft-updates.bat",
"./scripts/win-updates.ps1",
"./scripts/openssh.ps1"
],
Expand All @@ -44,6 +45,7 @@
"disk_size": 61440,
"floppy_files": [
"./answer_files/81/Autounattend.xml",
"./scripts/microsoft-updates.bat",
"./scripts/win-updates.ps1",
"./scripts/openssh.ps1",
"./scripts/oracle-cert.cer"
Expand Down

0 comments on commit 6caeb75

Please sign in to comment.