29 lines
671 B
Ruby
29 lines
671 B
Ruby
require "vagrant"
|
|
|
|
module VagrantPlugins
|
|
module SyncedFolderRSync
|
|
# This plugin implements synced folders via rsync.
|
|
class Plugin < Vagrant.plugin("2")
|
|
name "RSync synced folders"
|
|
description <<-EOF
|
|
The Rsync synced folder plugin will sync folders via rsync.
|
|
EOF
|
|
|
|
command("rsync", primary: false) do
|
|
require_relative "command/rsync"
|
|
Command::Rsync
|
|
end
|
|
|
|
command("rsync-auto", primary: false) do
|
|
require_relative "command/rsync_auto"
|
|
Command::RsyncAuto
|
|
end
|
|
|
|
synced_folder("rsync", 5) do
|
|
require_relative "synced_folder"
|
|
SyncedFolder
|
|
end
|
|
end
|
|
end
|
|
end
|