mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-17 01:31:27 -05:00
18 lines
425 B
Ruby
18 lines
425 B
Ruby
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
module VagrantPlugins
|
|
module GuestSmartos
|
|
class Config < Vagrant.plugin("2", :config)
|
|
# This sets the command to use to execute items as a superuser.
|
|
# @default sudo
|
|
attr_accessor :suexec_cmd
|
|
attr_accessor :device
|
|
|
|
def initialize
|
|
@suexec_cmd = 'pfexec'
|
|
@device = "e1000g"
|
|
end
|
|
end
|
|
end
|
|
end
|