Skip to content

Commit b41ba10

Browse files
authored
Merge pull request #907 from tgauth/add-sshdconfig-default-shell
Add default shell support to sshdconfig
2 parents 3b4587d + c7b697c commit b41ba10

16 files changed

+1593
-79
lines changed

build.ps1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ $filesForWindowsPackage = @(
6060
'RunCommandOnSet.dsc.resource.json',
6161
'RunCommandOnSet.exe',
6262
'sshdconfig.exe',
63-
'sshdconfig.dsc.resource.json',
63+
'sshd-windows.dsc.resource.json',
64+
'sshd_config.dsc.resource.json',
6465
'windowspowershell.dsc.resource.json',
6566
'wmi.dsc.resource.json',
6667
'wmi.resource.ps1',
@@ -87,7 +88,7 @@ $filesForLinuxPackage = @(
8788
'RunCommandOnSet.dsc.resource.json',
8889
'runcommandonset',
8990
'sshdconfig',
90-
'sshdconfig.dsc.resource.json'
91+
'sshd_config.dsc.resource.json'
9192
)
9293

9394
$filesForMacPackage = @(
@@ -109,7 +110,7 @@ $filesForMacPackage = @(
109110
'RunCommandOnSet.dsc.resource.json',
110111
'runcommandonset',
111112
'sshdconfig',
112-
'sshdconfig.dsc.resource.json'
113+
'sshd_config.dsc.resource.json'
113114
)
114115

115116
# the list of files other than the binaries which need to be executable
@@ -173,7 +174,7 @@ if ($null -ne $packageType) {
173174

174175
& $rustup default stable
175176

176-
## Test if Node is installed
177+
## Test if Node is installed
177178
## Skipping upgrade as users may have a specific version they want to use
178179
if (!(Get-Command 'node' -ErrorAction Ignore)) {
179180
Write-Verbose -Verbose "Node.js not found, installing..."

0 commit comments

Comments
 (0)