2014-11-14 20:51:35 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module LocalExecPush
|
|
|
|
class Plugin < Vagrant.plugin("2")
|
|
|
|
name "local-exec"
|
|
|
|
description <<-DESC
|
|
|
|
Run a local command or script to push
|
|
|
|
DESC
|
|
|
|
|
2014-12-12 09:36:39 +00:00
|
|
|
config(:"local-exec", :push) do
|
2014-11-14 20:51:35 +00:00
|
|
|
require File.expand_path("../config", __FILE__)
|
|
|
|
init!
|
|
|
|
Config
|
|
|
|
end
|
|
|
|
|
2014-12-12 09:36:39 +00:00
|
|
|
push(:"local-exec") do
|
2014-11-14 20:51:35 +00:00
|
|
|
require File.expand_path("../push", __FILE__)
|
|
|
|
init!
|
|
|
|
Push
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def self.init!
|
|
|
|
return if defined?(@_init)
|
|
|
|
I18n.load_path << File.expand_path("../locales/en.yml", __FILE__)
|
|
|
|
I18n.reload!
|
|
|
|
@_init = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|