Skip to content

Commit

Permalink
Merge pull request #493 from mhaskel/remove_mint
Browse files Browse the repository at this point in the history
Remove default support for Linux Mint and Cumulus Networks
  • Loading branch information
hunner committed Apr 13, 2015
2 parents d6c1234 + d3ca10f commit 02e1e05
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 50 deletions.
40 changes: 6 additions & 34 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -88,39 +88,8 @@
}

case $xfacts['lsbdistid'] {
'ubuntu', 'debian': {
$distid = $xfacts['lsbdistid']
$distcodename = $xfacts['lsbdistcodename']
}
'linuxmint': {
if $xfacts['lsbdistcodename'] == 'debian' {
$distid = 'debian'
$distcodename = 'wheezy'
} else {
$distid = 'ubuntu'
$distcodename = $xfacts['lsbdistcodename'] ? {
'qiana' => 'trusty',
'petra' => 'saucy',
'olivia' => 'raring',
'nadia' => 'quantal',
'maya' => 'precise',
}
}
}
'Cumulus Networks': {
$distid = 'debian'
$distcodename = $::lsbdistcodename
}
undef: {
fail('Unable to determine lsbdistid, is lsb-release installed?')
}
default: {
fail("Unsupported lsbdistid (${::lsbdistid})")
}
}
case $distid {
'debian': {
case $distcodename {
case $xfacts['lsbdistcodename'] {
'squeeze': {
$backports = {
'location' => 'http://backports.debian.org/debian-backports',
Expand All @@ -144,7 +113,7 @@
'repos' => 'main universe multiverse restricted',
}

case $distcodename {
case $xfacts['lsbdistcodename'] {
'lucid': {
$ppa_options = undef
$ppa_package = 'python-software-properties'
Expand All @@ -163,7 +132,10 @@
}
}
}
'', default: {
undef: {
fail('Unable to determine lsbdistid, is lsb-release installed?')
}
default: {
$ppa_options = undef
$ppa_package = undef
$backports = undef
Expand Down
4 changes: 2 additions & 2 deletions manifests/ppa.pp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
fail('lsbdistcodename fact not available: release parameter required')
}

if $::apt::distid != 'ubuntu' {
fail('apt::ppa is currently supported on Ubuntu and LinuxMint only.')
if $::apt::xfacts['lsbdistid'] == 'Debian' {
fail('apt::ppa is not currently supported on Debian.')
}

$filename_without_slashes = regsubst($name, '/', '-', 'G')
Expand Down
13 changes: 0 additions & 13 deletions spec/classes/params_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,6 @@
expect(subject.resources.size).to eq(4)
end

describe "With unknown lsbdistid" do

let(:facts) { { :lsbdistid => 'CentOS', :osfamily => 'Debian' } }
let (:title) { 'my_package' }

it do
expect {
is_expected.to compile
}.to raise_error(Puppet::Error, /Unsupported lsbdistid/)
end

end

describe "With lsb-release not installed" do
let(:facts) { { :lsbdistid => '', :osfamily => 'Debian' } }
let (:title) { 'my_package' }
Expand Down
2 changes: 1 addition & 1 deletion spec/defines/ppa_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
it do
expect {
is_expected.to compile
}.to raise_error(Puppet::Error, /supported on Ubuntu and LinuxMint only/)
}.to raise_error(Puppet::Error, /not currently supported on Debian/)
end
end
end
Expand Down

0 comments on commit 02e1e05

Please sign in to comment.