config.trigger.after :destroy do |trigger|
puts "Removing provisioned directory contents: #{host_provisioned_dir}/*"
FileUtils.rm_rf Dir.glob("#{host_provisioned_dir}/*")
puts "Removing WEB-INF from working copy."
FileUtils.rm_rf("#{host_wwwroot}/WEB-INF")
end
Is there a way to do run commands using (Vagrant's) ruby within triggers anymore?
I'm also curious as to whether running straight (Vagrant) ruby within provisioners is possible. Like "local" provisioners.
Thanks,
Jamie
With the old `vagrant-triggers` plugin (before Vagrant created its own native triggers), I'd been doing things like this:config.trigger.after :destroy do |trigger|
puts "Removing provisioned directory contents: #{host_provisioned_dir}/*"
FileUtils.rm_rf Dir.glob("#{host_provisioned_dir}/*")
puts "Removing WEB-INF from working copy."
FileUtils.rm_rf("#{host_wwwroot}/WEB-INF")
end
Is there a way to do run commands using (Vagrant's) ruby within triggers anymore?
I'm also curious as to whether running straight (Vagrant) ruby within provisioners is possible. Like "local" provisioners.
--
Thanks,
Jamie
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CA%2BonWPfih-2afX%3Dn0rzAyrmsY_GL8goY%3DFXNhNwt7hcGS950VQ%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CADHESCU6gbDMwZ1o66Z9n1fJ2nbWcVJ885Qj6EZMYRfXKiRSgA%40mail.gmail.com.