You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
module VagrantPlugins
|
|
module ProviderLxd
|
|
class Config < Vagrant.plugin("2", :config)
|
|
def initialize
|
|
@privileged = false
|
|
end
|
|
|
|
def privileged
|
|
@privileged = true
|
|
end
|
|
|
|
def privileged?
|
|
@privileged
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# vim: set et ts=2 sw=2:
|