be more explicit about detecting unix

Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
Dominik Richter 2015-09-27 23:56:25 +02:00
parent bc98b3330f
commit 2eb94f5e2e

View file

@ -112,7 +112,8 @@ class Vulcano::Plugins::Backend
end
# unix based systems combine the above
return true if pf == 'unix' and (detect_darwin or detect_via_uname)
return true if pf == 'unix' and detect_darwin
return true if pf == 'unix' and detect_via_uname
# if we arrive here, we most likey have a regular linux
detect_linux