Skip to content

Commit 61037f9

Browse files
committed
updates after comments
1 parent dd48c0e commit 61037f9

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

lib/puppet/provider/package/openbsd.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
These options should be specified as an array where each element is either a
1616
string or a hash."
1717

18-
commands :pkgadd => "pkg_add",
19-
:pkginfo => "pkg_info",
18+
commands :pkginfo => "pkg_info",
19+
:pkgadd => "pkg_add",
2020
:pkgdelete => "pkg_delete"
2121

2222
defaultfor 'os.name' => :openbsd
@@ -38,7 +38,7 @@ def self.instances
3838

3939
# now turn each returned line into a package object
4040
process.each_line { |line|
41-
match = regex.match(line.split("\n")[0])
41+
match = regex.match(line.split[0])
4242
if match
4343
fields.zip(match.captures) { |field, value|
4444
hash[field] = value
@@ -88,9 +88,9 @@ def install
8888

8989
def get_full_name
9090
# In case of a real update (i.e., the package already exists) then
91-
# pkg_add(8) can handle the flavors. However, if we're actually
91+
# pkg_add(1) can handle the flavors. However, if we're actually
9292
# installing with 'latest', we do need to handle the flavors. This is
93-
# done so we can feed pkg_add(8) the full package name to install to
93+
# done so we can feed pkg_add(1) the full package name to install to
9494
# prevent ambiguity.
9595

9696
name_branch_regex = /^(\S*)(%\w*)$/

spec/fixtures/unit/provider/package/openbsd/pkginfo.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ autoconf--%2.13
22
autoconf--%2.56
33
bash--
44
postfix--ldap%stable
5-
puppet--%8
5+
openvox--%8
66
zstd--

spec/unit/provider/package/openbsd_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
fixture = File.read(my_fixture('pkginfo.list'))
3939
expect(described_class).to receive(:execpipe).with(%w{/bin/pkg_info -a -z}).and_yield(fixture)
4040
expect(described_class.instances.map(&:name).sort).to eq(
41-
%w{autoconf%2.13 autoconf%2.56 bash postfix%stable puppet%8 zstd}.sort
41+
%w{autoconf%2.13 autoconf%2.56 bash postfix%stable openvox%8 zstd}.sort
4242
)
4343
end
4444

@@ -52,7 +52,7 @@
5252
expect(instances[1]).to eq({:name => 'autoconf%2.56', :flavor => :absent, :branch => '%2.56'})
5353
expect(instances[2]).to eq({:name => 'bash', :flavor => :absent, :branch => :absent})
5454
expect(instances[3]).to eq({:name => 'postfix%stable', :flavor => 'ldap', :branch => '%stable'})
55-
expect(instances[4]).to eq({:name => 'puppet%8', :flavor => :absent, :branch => '%8'})
55+
expect(instances[4]).to eq({:name => 'openvox%8', :flavor => :absent, :branch => '%8'})
5656
expect(instances[5]).to eq({:name => 'zstd', :flavor => :absent, :branch => :absent})
5757
end
5858
end
@@ -78,8 +78,8 @@
7878
end
7979

8080
it "should return the full unversioned package name when installing without a flavor" do
81-
provider.resource[:name] = 'puppet'
82-
expect(provider.get_full_name).to eq('puppet--')
81+
provider.resource[:name] = 'openvox'
82+
expect(provider.get_full_name).to eq('openvox--')
8383
end
8484

8585
it "should return unversioned package name when installing without flavor or branch" do

0 commit comments

Comments
 (0)