Merge pull request #216 from genome-vendor/master
Remove the quotes from the "origin" line.
This commit is contained in:
commit
7875745a8b
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ describe 'apt::pin', :type => :define do
|
|||
:priority => '1',
|
||||
:origin => 'ftp.de.debian.org'
|
||||
},
|
||||
:content => "# my_pin\nExplanation: : my_pin\nPackage: *\nPin: origin \"ftp.de.debian.org\"\nPin-Priority: 1\n"
|
||||
:content => "# my_pin\nExplanation: : my_pin\nPackage: *\nPin: origin ftp.de.debian.org\nPin-Priority: 1\n"
|
||||
},
|
||||
{
|
||||
:params => {
|
||||
|
|
|
@ -12,7 +12,7 @@ if @pin_release.length > 0
|
|||
elsif @version.length > 0
|
||||
@pin = "version #{@version}"
|
||||
elsif @origin.length > 0
|
||||
@pin = "origin \"#{@origin}\""
|
||||
@pin = "origin #{@origin}"
|
||||
end
|
||||
-%>
|
||||
# <%= @name %>
|
||||
|
|
Loading…
Reference in a new issue