fgrehm / vagrant-cachier

Caffeine reducer
http://fgrehm.viewdocs.io/vagrant-cachier
MIT License
1.08k stars 111 forks source link

dnf plugin #180

Closed rmohr closed 7 years ago

rmohr commented 7 years ago

Hi, here a DNF plugin for cachier.

If the folder /car/cache/dnf is present, the content will be cached like in the Yum plugin.

A possible configuration to enable it:

Vagrant.configure(2) do |config|
   config.vm.box = "fedora/24-cloud-base"
  if Vagrant.has_plugin?("vagrant-cachier")
    config.cache.scope = :machine
    config.cache.auto_detect = false
    config.cache.enable :dnf
  end
end

Further a check if a system supports DNF or Yum is now part of the code too.

rmohr commented 7 years ago

@fgrehm happy to help you out if you are still looking for maintainers.

aloyr commented 7 years ago

it has been 2 months... any idea of when this will be merged?