Merge pull request #13055 from Penaz91/artix-support

Artix Linux Host Support
This commit is contained in:
Sophia Castellarin 2023-02-21 16:49:02 -08:00 committed by GitHub
commit 58d629d9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ module VagrantPlugins
module HostArch
class Host < Vagrant.plugin("2", :host)
def detect?(env)
File.exist?("/etc/arch-release")
File.exist?("/etc/arch-release") && !File.exist?("/etc/artix-release")
end
end
end