* ALT Linux platforms is an original rpm based distribution forked as Mandrake Russian Edition Spring at 2001 year * Distributions of ALT Linux use etcnet (https://www.altlinux.org/Etcnet) as internal network configuration system needs for configure_networks support
10 lines
203 B
Ruby
10 lines
203 B
Ruby
module VagrantPlugins
|
|
module GuestALT
|
|
class Guest < Vagrant.plugin("2", :guest)
|
|
def detect?(machine)
|
|
machine.communicate.test("cat /etc/altlinux-release")
|
|
end
|
|
end
|
|
end
|
|
end
|