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

Commit 6caeb75

Browse files
committed
Merge branch 'release/1.20'
2 parents 203c7a3 + 7772ac4 commit 6caeb75

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v1.20 (July 21st, 2014)
2+
3+
* Update Chocolatey script for Chocolatey 0.9.8.27
4+
* Password for Vagrant user never expires
5+
* Salt installation script
6+
* Microsoft-updates.bat script for Win 7/8
7+
18
## v1.19 (May 17th, 2014)
29

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

8794
* Initial release, including working Windows 2008 R2 configuration
95+

scripts/chocolatey.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" <NUL
22

3-
<nul set /p ".=;C:\Chocolatey\bin" >> C:\Windows\Temp\PATH
3+
<nul set /p ".=;%ALLUSERSPROFILE%\chocolatey\bin" >> C:\Windows\Temp\PATH
44
set /p PATH=<C:\Windows\Temp\PATH
5-
setx PATH "%PATH%" /m
5+
setx PATH "%PATH%" /m

scripts/salt.bat

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
if not exist "C:\Windows\Temp\salt64.exe" (
2+
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
3+
)
4+
5+
:: http://docs.saltstack.com/en/latest/topics/installation/windows.html
6+
c:\windows\temp\salt64.exe /S
7+
:: /master=<yoursaltmaster> /minion-name=<thisminionname>
8+
9+
<nul set /p ".=;C:\salt" >> C:\Windows\Temp\PATH
10+
set /p PATH=<C:\Windows\Temp\PATH
11+
setx PATH "%PATH%" /m

windows_7.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"vnc_port_max": 5980,
1919
"floppy_files": [
2020
"./answer_files/7/Autounattend.xml",
21-
"./scripts/dis-updates.ps1",
21+
"./scripts/microsoft-updates.bat",
2222
"./scripts/win-updates.ps1",
2323
"./scripts/openssh.ps1"
2424
],
@@ -45,7 +45,7 @@
4545
"disk_size": 61440,
4646
"floppy_files": [
4747
"./answer_files/7/Autounattend.xml",
48-
"./scripts/dis-updates.ps1",
48+
"./scripts/microsoft-updates.bat",
4949
"./scripts/win-updates.ps1",
5050
"./scripts/openssh.ps1",
5151
"./scripts/oracle-cert.cer"

windows_81.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"vnc_port_max": 5980,
1919
"floppy_files": [
2020
"./answer_files/81/Autounattend.xml",
21+
"./scripts/microsoft-updates.bat",
2122
"./scripts/win-updates.ps1",
2223
"./scripts/openssh.ps1"
2324
],
@@ -44,6 +45,7 @@
4445
"disk_size": 61440,
4546
"floppy_files": [
4647
"./answer_files/81/Autounattend.xml",
48+
"./scripts/microsoft-updates.bat",
4749
"./scripts/win-updates.ps1",
4850
"./scripts/openssh.ps1",
4951
"./scripts/oracle-cert.cer"

0 commit comments

Comments
 (0)