You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, openvox_bootstrap::install will still install openvox-agent,
but you can override `package` to install another package, such as
openvox-server or openvoxdb from the collection.
Copy file name to clipboardExpand all lines: REFERENCE.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,25 @@
6
6
7
7
### Tasks
8
8
9
-
*[`install`](#install): Installs the openvox-agent package.
9
+
*[`install`](#install): Installs an openvox package. By default, this will be the latest openvox-agent from the latest collection.
10
10
*[`install_build_artifact`](#install_build_artifact): Downloads and installs a package directly from openvox build artifact server. This can be used to help with testing builds prior to release.
11
11
12
12
## Tasks
13
13
14
14
### <aname="install"></a>`install`
15
15
16
-
Installs the openvox-agent package.
16
+
Installs an openvox package. By default, this will be the latest openvox-agent from the latest collection.
17
17
18
18
**Supports noop?** false
19
19
20
20
#### Parameters
21
21
22
+
##### `package`
23
+
24
+
Data type: `String[1]`
25
+
26
+
The name of the package to install.
27
+
22
28
##### `version`
23
29
24
30
Data type: `Optional[String]`
@@ -51,17 +57,17 @@ Downloads and installs a package directly from openvox build artifact server. Th
Copy file name to clipboardExpand all lines: tasks/install_build_artifact.json
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
{
2
2
"description": "Downloads and installs a package directly from openvox build artifact server. This can be used to help with testing builds prior to release. (To install a released version, use the openvox_bootstrap::install task.)",
3
3
"parameters": {
4
-
"version": {
5
-
"description": "The version of the package to install.",
6
-
"type": "String[1]"
7
-
},
8
4
"package": {
9
5
"description": "The name of the package to install.",
10
6
"type": "String[1]",
11
7
"default": "openvox-agent"
12
8
},
9
+
"version": {
10
+
"description": "The version of the package to install.",
11
+
"type": "String[1]"
12
+
},
13
13
"artifacts_source": {
14
14
"description": "URL to the build artifacts server.",
0 commit comments