vagrant/plugins/guests/fedora/cap/network_scripts_dir.rb

16 lines
485 B
Ruby
Raw Normal View History

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
# operating systems (SuSE) which behave similarly but with a different
# path to the network scripts.
def self.network_scripts_dir(machine)
"/etc/sysconfig/network-scripts"
end
end
end
end
end