This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace :secret do | |
| desc "Edit an encrypted data bag item in EDITOR" | |
| task :edit, :data_bag, :bag_item do |t, args| | |
| unless ENV['EDITOR'] | |
| puts "No EDITOR found. Try:" | |
| puts "export EDITOR=vim" | |
| puts "or" | |
| puts "export EDITOR='subl -w'" | |
| exit 1 | |
| end |
NewerOlder