10 lines
146 B
Ruby
10 lines
146 B
Ruby
module Vagrant
|
|
module Guest
|
|
class Suse < Redhat
|
|
def network_scripts_dir
|
|
'/etc/sysconfig/network/'
|
|
end
|
|
end
|
|
end
|
|
end
|