homeseed 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/bin/homeseed +3 -3
- data/lib/homeseed/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c42d84e3616d46ac36b1f9010cfb269e50ada6a7
|
|
4
|
+
data.tar.gz: 27adea710084cbacc03b0a6d8cdd69a6d4ae3a62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c02c2134dc1427b68c396b476a65e3551b48133c9720a4e658d84b4edeff92154eea72d31cbce89257648e8a567a8b1846195a4568922655d60c0352b44bafc9
|
|
7
|
+
data.tar.gz: 2c11f8685c99e06e32c466634676709aae528ac19c277860e987bf3b46858db327542b9954f9a70a2fba570cf93d3f0871c2383a2b6ca80d0a509c87559bb869
|
data/README.md
CHANGED
|
@@ -26,7 +26,7 @@ Commands:
|
|
|
26
26
|
homeseed exec [-e <command> or -f <files>] [-u <user>] [-p <has_password>] -s, --servers=SERVERS # executes bash login session(s) on remote servers to run inline bash commands or bash ...
|
|
27
27
|
homeseed help [COMMAND] # Describe available commands or one specific command
|
|
28
28
|
homeseed plant [-u <user>] [-p <has_password>] [-c <clean>] [--url <url>] -s, --servers=SERVERS # installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or url...
|
|
29
|
-
homeseed update [-u <user>] [-p <has_password>] [--url <url>] -s, --servers=SERVERS # updates dot profile based on localhost $HOME/.
|
|
29
|
+
homeseed update [-u <user>] [-p <has_password>] [--url <url>] -s, --servers=SERVERS # updates dot profile based on localhost $HOME/.homeseed.yml or url with yml commands
|
|
30
30
|
homeseed upload [-f <upload_files>] [-r <remote_path>] [-u <user>] [-p <has_password>] -s, --servers=SERVERS # scp uploads file(s) to remote servers
|
|
31
31
|
```
|
|
32
32
|
|
data/bin/homeseed
CHANGED
|
@@ -30,7 +30,7 @@ module Homeseed
|
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
desc 'plant [-u <user>] [-p <has_password>] [-c <clean>] [--url <url>]',
|
|
33
|
-
'installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or url
|
|
33
|
+
'installs homeshick and then dot profile based on localhost $HOME/.homeseed.yml or compatible url'
|
|
34
34
|
method_option :servers, required: true, aliases: '-s', desc: 'ssh hostname(s) or localhost; csv if multiple'
|
|
35
35
|
method_option :user, aliases: '-u', desc: 'ssh username', default: ENV['USER']
|
|
36
36
|
method_option :has_password, aliases: '-p', type: :boolean, default: false, desc: 'connection uses password; no ssh keys'
|
|
@@ -42,11 +42,11 @@ module Homeseed
|
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
desc 'update [-u <user>] [-p <has_password>] [--url <url>]',
|
|
45
|
-
'updates dot profile based on localhost $HOME/.
|
|
45
|
+
'updates dot profile based on localhost $HOME/.homeseed.yml or compatible url'
|
|
46
46
|
method_option :servers, required: true, aliases: '-s', desc: 'ssh hostname(s); csv if multiple'
|
|
47
47
|
method_option :user, aliases: '-u', desc: 'ssh username', default: ENV['USER']
|
|
48
48
|
method_option :has_password, aliases: '-p', type: :boolean, default: false, desc: 'connection uses password; no ssh keys'
|
|
49
|
-
method_option :url, desc: "url to use vs file default: #{ENV['HOME']}/.
|
|
49
|
+
method_option :url, desc: "url to use vs file default: #{ENV['HOME']}/.homeseed.yml"
|
|
50
50
|
def update
|
|
51
51
|
homeshick = Homeseed::Homeshick.new options
|
|
52
52
|
homeshick.update options
|
data/lib/homeseed/version.rb
CHANGED