-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathawsam.rb
43 lines (35 loc) · 982 Bytes
/
awsam.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
$:.unshift File.join(File.dirname(__FILE__), 'awsam')
require 'fileutils'
require 'aws-sdk'
require 'accounts'
require 'ec2'
module Awsam
CONF_BASE_DIR = ".awsam"
CONF_DIR = File.join(ENV['HOME'], CONF_BASE_DIR)
DEFAULT_LINK_NAME = ".default"
def self.get_conf_dir
FileUtils.mkdir(CONF_DIR) unless File.exist?(CONF_DIR)
CONF_DIR
end
def self.get_accts_dir
base = get_conf_dir()
acctsdir = File.join(base, 'accts')
FileUtils.mkdir(acctsdir) unless File.exist?(acctsdir)
acctsdir
end
def self.init_awsam
dir = get_conf_dir
File.open(File.join(dir, "bash.rc"), "w") do |f|
f << File.read(File.join(File.dirname(__FILE__), '../bashrc/rc.scr'))
end
puts
puts "Initialized AWS Account Manager"
puts
puts "Add the following to your $HOME/.bashrc:"
puts
puts " if [ -s $HOME/#{CONF_BASE_DIR}/bash.rc ]; then"
puts " source $HOME/#{CONF_BASE_DIR}/bash.rc"
puts " fi"
puts
end
end