2014-03-06 08:18:29 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module GuestSmartos
|
|
|
|
class Config < Vagrant.plugin("2", :config)
|
2016-06-05 23:57:58 +00:00
|
|
|
# This sets the command to use to execute items as a superuser.
|
|
|
|
# @default sudo
|
2014-03-06 08:18:29 +00:00
|
|
|
attr_accessor :suexec_cmd
|
|
|
|
attr_accessor :device
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@suexec_cmd = 'pfexec'
|
2016-06-05 23:57:58 +00:00
|
|
|
@device = "e1000g"
|
2014-05-01 16:03:49 +00:00
|
|
|
end
|
2014-03-06 08:18:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|