Networking in SUSE works almost exactly like redhat. The only difference is the location of the networking scripts. This has been verified as working on SLES11sp1, but requires a previously configured eth1 interface (as with redhat) I have also verified that I can still bring up a localnet on rhel 4,5
10 lines
149 B
Ruby
10 lines
149 B
Ruby
module Vagrant
|
|
module Systems
|
|
class Suse < Redhat
|
|
def network_scripts_dir
|
|
'/etc/sysconfig/network/'
|
|
end
|
|
end
|
|
end
|
|
end
|