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

Commit da021df

Browse files
committed
1 parent 251b6fa commit da021df

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Staging files from various sources:
3030

3131
```puppet
3232
staging::file { 'sample':
33-
source => 'puppet://modules/staging/sample',
33+
source => 'puppet:///modules/staging/sample',
3434
}
3535
3636
staging::file { 'apache-tomcat-6.0.35':

manifests/deploy.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The define resource extracts compressed file to a staging location.
22
define staging::deploy (
33
$target, #: the target extraction directory
4-
$source = undef, #: the source file location, supports local files, puppet://, http://, https://, ftp://
4+
$source = undef, #: the source file location, supports local files, puppet:///, http://, https://, ftp://
55
$staging_path = undef, #: the staging location for compressed file. defaults to ${staging::path}/${caller_module_name}
66
$username = undef, #: https or ftp username
77
$certificate = undef, #: https certifcate file

manifests/file.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# resource as necessary.
1111
#
1212
define staging::file (
13-
$source, #: the source file location, supports local files, puppet://, http://, https://, ftp://, s3://
13+
$source, #: the source file location, supports local files, puppet:///, http://, https://, ftp://, s3://
1414
$target = undef, #: the target file location, if unspecified ${staging::path}/${subdir}/${name}
1515
$username = undef, #: https or ftp username
1616
$certificate = undef, #: https certificate file

0 commit comments

Comments
 (0)