Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Default value: `undef`

##### <a name="-apt--backports"></a>`backports`

Data type: `Optional[Hash]`
Data type: `Hash`

Specifies some of the default parameters used by apt::backports. Valid options: a hash made up from the following keys:

Expand All @@ -148,7 +148,14 @@ Options:
* **:repos** `String`: See apt::backports for documentation.
* **:key** `String`: See apt::backports for documentation.

Default value: `undef`
Default value:

```puppet
{
'location' => 'http://deb.debian.org/debian',
'repos' => 'main contrib non-free non-free-firmware',
}
```

##### <a name="-apt--confs"></a>`confs`

Expand Down
3 changes: 0 additions & 3 deletions data/os/Debian.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions data/os/Debian/12.yaml

This file was deleted.

5 changes: 4 additions & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@
Optional[String[1]] $key_options = undef,
Optional[Array[String[1]]] $ppa_options = undef,
Optional[String[1]] $ppa_package = undef,
Optional[Hash] $backports = undef,
Hash $backports = {
'location' => 'http://deb.debian.org/debian',
'repos' => 'main contrib non-free non-free-firmware',
},
Hash $confs = {},
Hash $update = {},
Hash $purge = {},
Expand Down
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"operatingsystem": "Debian",
"operatingsystemrelease": [
"11",
"12"
"12",
"13"
]
},
{
Expand Down
Loading