Skip to content

Commit 42fe966

Browse files
committed
Move sub-tasks to "unit" directory
This helps clarify the intended user interface classes, currently provision and upgrade.
1 parent 5534404 commit 42fe966

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plans/provision.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Optional[Boolean] $executing_on_master = undef,
2525
) {
2626

27-
run_plan('pe_xl::install',
27+
run_plan('pe_xl::unit::install',
2828
# Large
2929
master_host => $master_host,
3030
compiler_hosts => $compiler_hosts,
@@ -49,7 +49,7 @@
4949
stagingdir => $stagingdir,
5050
)
5151

52-
run_plan('pe_xl::configure',
52+
run_plan('pe_xl::unit::configure',
5353
# Large
5454
master_host => $master_host,
5555
compiler_hosts => $compiler_hosts,

plans/configure.pp renamed to plans/unit/configure.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @summary Configure first-time classification and HA setup
22
#
3-
plan pe_xl::configure (
3+
plan pe_xl::unit::configure (
44
String[1] $master_host,
55
Array[String[1]] $compiler_hosts = [ ],
66

plans/install.pp renamed to plans/unit/install.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# Config data to plane into pe.conf when generated on all hosts, this can be
1414
# used for tuning data etc.
1515
#
16-
plan pe_xl::install (
16+
plan pe_xl::unit::install (
1717
# Large
1818
String[1] $master_host,
1919
Array[String[1]] $compiler_hosts = [ ],

0 commit comments

Comments
 (0)