2013-04-04 18:49:26 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestFedora
|
|
|
|
module Cap
|
|
|
|
class NetworkScriptsDir
|
|
|
|
# The path to the directory with the network configuration scripts.
|
|
|
|
# This is pulled out into its own directory since there are other
|
2014-09-11 08:52:15 +00:00
|
|
|
# operating systems (SUSE) which behave similarly but with a different
|
2013-04-04 18:49:26 +00:00
|
|
|
# path to the network scripts.
|
|
|
|
def self.network_scripts_dir(machine)
|
|
|
|
"/etc/sysconfig/network-scripts"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|