Skip to content

Commit 84850a5

Browse files
committed
1 parent 41d06c4 commit 84850a5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

manifests/osfamily/debian.pp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,11 @@
6060
# Pass in an empty content string since apt requires it even though we are removing it
6161
apt::setting { 'list-puppet-enterprise-installer':
6262
ensure => absent,
63-
content => '',
6463
}
6564

6665
apt::setting { 'conf-pe-repo':
6766
ensure => absent,
6867
priority => '90',
69-
content => '',
7068
}
7169
} else {
7270
$source = $puppet_agent::apt_source

spec/classes/puppet_agent_osfamily_debian_spec.rb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,14 @@
5858
is_expected.to contain_apt__setting('conf-pe-repo')
5959
.with({
6060
'priority' => 90,
61-
'content' => '',
6261
'ensure' => 'absent',
6362
})
6463
}
6564

6665
it {
6766
is_expected.to contain_apt__setting('list-puppet-enterprise-installer')
6867
.with({
69-
'content' => '',
70-
'ensure' => 'absent',
68+
'ensure' => 'absent',
7169
})
7270
}
7371
end

0 commit comments

Comments
 (0)