Skip to content

Commit 842e420

Browse files
committed
(GH-502) Change default InstallType to PDK
This commit changes the default install type from Puppet Agent to PDK and updates the tests.
1 parent 37951b4 commit 842e420

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
},
397397
"puppet.installType": {
398398
"type": "string",
399-
"default": "agent",
399+
"default": "pdk",
400400
"description": "The type of Puppet installation. Either the Puppet Development Kit (pdk) or the Puppet Agent (agent)",
401401
"enum": [
402402
"pdk",

src/test/configuration.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ suite("Configuration Tests", () => {
2121
break;
2222
}
2323

24-
test("resolves puppetBaseDir as puppet with default installtype", () => {
24+
test("resolves pdkPuppetBaseDir as puppet with default installtype", () => {
2525
const settings: ISettings = DefaultWorkspaceSettings();
2626
var config = CreateAggregrateConfiguration(settings);
27-
assert.equal(config.ruby.puppetBaseDir, puppetBaseDir);
27+
assert.equal(config.ruby.puppetBaseDir, pdkPuppetBaseDir);
2828
});
2929

3030
test("resolves puppetBaseDir as puppet with installtype eq puppet", () => {

0 commit comments

Comments
 (0)