Skip to content

Commit b678d83

Browse files
committed
Add puppetlabs-facts dependency
The facts module will be used to gather base platform information to guide which release package to install.
1 parent dc87b83 commit b678d83

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.modules
2+
.plan_cache.json
3+
.task_cache.json
4+
Puppetfile

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bolt module for bootstrapping installation of the openvox-agent package.

bolt-project.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
name: openvox-bootstrap
1+
name: openvox_bootstrap
2+
modules:
3+
- name: puppetlabs-facts
4+
version_requirement: ">= 0.1.0 < 2.0.0"

metadata.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
{
2-
"name": "openvox-bootstrap",
2+
"name": "openvox_bootstrap",
33
"version": "0.1.0",
44
"summary": "Bootstrap installation of the OpenVox agent.",
55
"description": "A Bolt project to bootstrap the installation of the OpenVox agent.",
66
"author": "Josh Partlow",
77
"license": "AGPL-3.0",
8-
"source": "https://github.com/jpartlow/openvox-bootstrap",
9-
"project_page": "https://github.com/jpartlow/openvox-bootstrap",
10-
"issues_url": "https://github.com/jpartlow/openvox-bootstrap/issues",
11-
"dependencies": [],
12-
"requirements": []
8+
"source": "https://github.com/jpartlow/openvox_bootstrap",
9+
"project_page": "https://github.com/jpartlow/openvox_bootstrap",
10+
"issues_url": "https://github.com/jpartlow/openvox_bootstrap/issues",
11+
"dependencies": [
12+
{
13+
"name": "puppetlabs-facts",
14+
"version_requirement": ">= 0.1.0 < 2.0.0"
15+
}
16+
],
17+
"requirements": [
18+
{
19+
"name": "puppet",
20+
"version_requirement": ">= 7.0.0 < 9.0.0"
21+
}
22+
]
1323
}

0 commit comments

Comments
 (0)