File tree 4 files changed +43
-14
lines changed
4 files changed +43
-14
lines changed Original file line number Diff line number Diff line change
1
+ # devcontainer
2
+
3
+
4
+ For format details, see https://aka.ms/devcontainer.json .
5
+
6
+ For config options, see the README at:
7
+ https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
8
+
9
+ ``` json
10
+ {
11
+ "name" : " Puppet Development Kit (Community)" ,
12
+ "dockerFile" : " Dockerfile" ,
13
+
14
+ // Set *default* container specific settings.json values on container create.
15
+ "settings" : {
16
+ "terminal.integrated.shell.linux" : " /bin/bash"
17
+ },
18
+
19
+ // Add the IDs of extensions you want installed when the container is created.
20
+ "extensions" : [
21
+ " puppet.puppet-vscode" ,
22
+ " rebornix.Ruby"
23
+ ]
24
+
25
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
26
+ "forwardPorts" : [],
27
+
28
+ // Use 'postCreateCommand' to run commands after the container is created.
29
+ "postCreateCommand" : " pdk --version" ,
30
+ }
31
+ ```
32
+
33
+
34
+
Original file line number Diff line number Diff line change 1
- // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2
- // https://github.com/microsoft/vscode-dev-containers/tree/v0.140.1/containers/puppet
3
1
{
4
2
"name" : " Puppet Development Kit (Community)" ,
5
3
"dockerFile" : " Dockerfile" ,
6
4
7
- // Set *default* container specific settings.json values on container create.
8
5
"settings" : {
9
- "terminal.integrated.shell.linux" : " /bin/bash"
6
+ "terminal.integrated.profiles.linux" : {
7
+ "bash" : {
8
+ "path" : " bash" ,
9
+ }
10
+ }
10
11
},
11
12
12
- // Add the IDs of extensions you want installed when the container is created.
13
13
"extensions" : [
14
14
" puppet.puppet-vscode" ,
15
15
" rebornix.Ruby"
16
16
]
17
-
18
- // Use 'forwardPorts' to make a list of ports inside the container available locally.
19
- // "forwardPorts": [],
20
-
21
- // Use 'postCreateCommand' to run commands after the container is created.
22
- // "postCreateCommand": "pdk --version",
23
17
}
Original file line number Diff line number Diff line change 43
43
44
44
PuppetLint . configuration . send ( 'disable_relative' )
45
45
46
+
46
47
if Bundler . rubygems . find_name ( 'github_changelog_generator' ) . any?
47
48
GitHubChangelogGenerator ::RakeTask . new :changelog do |config |
48
49
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake . application . top_level_tasks . include? "changelog" and ENV [ 'CHANGELOG_GITHUB_TOKEN' ] . nil?
Original file line number Diff line number Diff line change 59
59
"version_requirement" : " >= 6.16.0 < 8.0.0"
60
60
}
61
61
],
62
- "pdk-version" : " 2.1.1 " ,
63
- "template-url" : " https://github.com/puppetlabs/pdk-templates#2.1.1 " ,
64
- "template-ref" : " tags/2.1.1 -0-g03daa92 "
62
+ "pdk-version" : " 2.4.0 " ,
63
+ "template-url" : " https://github.com/puppetlabs/pdk-templates#2.4.0 " ,
64
+ "template-ref" : " tags/2.4.0 -0-gfa6b6d2 "
65
65
}
You can’t perform that action at this time.
0 commit comments