Skip to content

Commit

Permalink
Merge pull request #66 from m8t/master
Browse files Browse the repository at this point in the history
fix command pkg update --quiet option
  • Loading branch information
zachfi committed Jul 6, 2015
2 parents d5c65d0 + e8d08c2 commit 5e2b05a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/puppet/provider/package/pkgng.rb
Expand Up @@ -144,7 +144,7 @@ def update
install
end

# Returnthe latest version of the package
# Return the latest version of the package
def latest
debug "returning the latest #{@property_hash[:name].inspect} version #{@property_hash[:latest].inspect}"
@property_hash[:latest]
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Expand Up @@ -69,7 +69,7 @@
exec { 'pkg update':
path => '/usr/local/sbin',
refreshonly => true,
command => 'pkg -q update -f',
command => 'pkg update -q -f',
}

# This exec should really on ever be run once, and only upon converting to
Expand Down

0 comments on commit 5e2b05a

Please sign in to comment.