diff options
Diffstat (limited to 'modules/pacman/manifests/repo.pp')
m--------- | modules/pacman | 0 | ||||
-rw-r--r-- | modules/pacman/manifests/repo.pp | 21 |
2 files changed, 0 insertions, 21 deletions
diff --git a/modules/pacman b/modules/pacman new file mode 160000 | |||
Subproject 1b42bd156fd35c7736e155e3a8c456969a274ff | |||
diff --git a/modules/pacman/manifests/repo.pp b/modules/pacman/manifests/repo.pp deleted file mode 100644 index 02dc4ec..0000000 --- a/modules/pacman/manifests/repo.pp +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | # This resource manages an individual repo's that applies to the file defined in | ||
2 | # $target. See README.md for more details. | ||
3 | # always order from 100 and increase. | ||
4 | define pacman::repo ( | ||
5 | $server = undef, | ||
6 | $include = undef, | ||
7 | $description = undef, | ||
8 | $siglevel = undef, | ||
9 | $order = '100', | ||
10 | # Needed for testing primarily, support for multiple files is not really | ||
11 | # working. | ||
12 | $target = $pacman::config::config) { | ||
13 | # Create a rule fragment | ||
14 | $fragname = "repo_${name}" | ||
15 | |||
16 | concat::fragment { $fragname: | ||
17 | target => $target, | ||
18 | content => template('pacman/pacman.conf.repo.erb'), | ||
19 | order => $order, | ||
20 | } | ||
21 | } | ||