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.
15 lines
280 B
15 lines
280 B
module Vagrant
|
|
module Lxd
|
|
class Command < Vagrant.plugin('2', :command)
|
|
# def initialize(argv, env)
|
|
# super argv, env
|
|
# end
|
|
|
|
def execute
|
|
@env.ui.info("my own plugin", :prefix => false)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
# vim: set et ts=2 sw=2:
|