File: file.pp

package info (click to toggle)
puppet-module-nanliu-staging 1.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: ruby: 441; sh: 10; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$caller_module_name = 'demo'

class { 'staging':
  path => '/tmp/staging',
}

staging::file { 'sample':
  source => 'puppet:///modules/staging/sample',
}

staging::file { 'passwd':
  source => '/etc/passwd',
}

staging::file { 'manpage.html':
  source => 'http://curl.haxx.se/docs/manpage.html',
}