Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit fa8e069

Browse files
committed
undef
1 parent f93b7dd commit fa8e069

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

manifests/init.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
Optional[String[1]] $http_proxy = undef,
8585
Optional[String[1]] $https_proxy = undef,
8686
Optional[String[1]] $no_proxy = undef,
87-
Optional[Boolean] $disable_update = false,
87+
Optional[Boolean] $disable_update = undef,
8888
Optional[Array[String]] $path = undef,
8989
Optional[Hash[String, String]] $env = undef,
9090
) {

manifests/instance.pp

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
Optional[String[1]] $http_proxy = $github_actions_runner::http_proxy,
6666
Optional[String[1]] $https_proxy = $github_actions_runner::https_proxy,
6767
Optional[String[1]] $no_proxy = $github_actions_runner::no_proxy,
68-
Optional[Boolean] $disable_update = $github_actions_runner::disable_update,
68+
Optional[Boolean] $disable_update = $github_actions_runner::disable_update,
6969
Optional[Array[String[1]]] $labels = undef,
7070
Optional[String[1]] $enterprise_name = $github_actions_runner::enterprise_name,
7171
Optional[String[1]] $org_name = $github_actions_runner::org_name,
@@ -139,7 +139,7 @@
139139
url => $url,
140140
hostname => $hostname,
141141
assured_labels => $assured_labels,
142-
disableupdate => $disableupdate,
142+
disableupdate => $disable_update,
143143
}),
144144
notify => Exec["${instance_name}-run_configure_install_runner.sh"],
145145
require => Archive["${instance_name}-${archive_name}"],

0 commit comments

Comments
 (0)