sous-chefs / nfs

Development repository for the nfs cookbook
https://supermarket.chef.io/cookbooks/nfs
Apache License 2.0
40 stars 88 forks source link

Add handling for Debian Stretch #103

Closed chuhn closed 6 years ago

chuhn commented 7 years ago

Debian Stretch has to be handled like Ubuntu >= 15.04 due to systemd'd nfs-common package.

The logic could be even more consolidated ie.

case
  when debian_version >= 9 || ubuntu_version >= 15.04 
      …
  when … 
  else …
end

but the current patch is good enough™ for me.