Skip to content

Commit ebd4361

Browse files
committed
remove case that will not match for debian
metadata.json currently specifies that only debian version 8, 9 and 10 are supported, so this version comparison will always result to false.
1 parent 4168bc6 commit ebd4361

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manifests/params.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
case $facts['os']['name'] {
4646
'Debian': {
47-
$manage_repos = (versioncmp($facts['os']['release']['major'], '8') < 0)
47+
$manage_repos = false
4848
}
4949

5050
'Ubuntu': {

0 commit comments

Comments
 (0)