abalone 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -0
  3. data/bin/abalone +3 -0
  4. data/lib/abalone.rb +5 -0
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7b5895664754d30e6194747774b1245f3f80039a
4
- data.tar.gz: c4dc7773764d67ed693e613c36e61f4a6a657b1d
3
+ metadata.gz: 8bd7313af2ef199663a12440718471b9d2eff311
4
+ data.tar.gz: fa3cf73aeda53912d5125f2a762362b43f85aca8
5
5
  SHA512:
6
- metadata.gz: ec2e17dd1b35a0c98439386a83ccf59f6cd883240f52f8d54213e500ec95dd276c4e31cc9235952b6c65e608082b47ac8273eac6cee0eeaa0d879e66bbe30461
7
- data.tar.gz: d14d3b719b607ad3a1975890a94b9208a305b760465784781cdb772d10417450233d1d82f918320d1b34538a75ae0a126d80c5ffa29640bb1daaca3b9662be5f
6
+ metadata.gz: 6ca11182e225316c971cee0f75f7d6cd27e137d0ded674810379a6e6576ff09d386d39d367a3dc2f32108c44d699b4ddfc42c5777dc150882413991702596bb9
7
+ data.tar.gz: 7c8e6175f921726e7ddcfcb4f1b9a7f147e314ebcb11d3dc99b0ece9f85c58485865c1408dc3cfd793623b7e36dbb47f86067b8537ba2c507210fa0e778b0b84
data/README.md CHANGED
@@ -38,6 +38,10 @@ can set several options:
38
38
  * `:bind`
39
39
  * The hostname or IP address of the interface to listen on.
40
40
  * Default value: `0.0.0.0` (listen to all interfaces.)
41
+ * `:bannerfile`
42
+ * File to display before login. This does not interpret special characters the way `getty` does.
43
+ * `true`, `false`, or filename to display.
44
+ * Default value: `false`, or `/etc/issue.net` if set to `true`.
41
45
  * `:logfile`
42
46
  * The path of a file to log to.
43
47
  * Default value: Log only to `STDERR`. If you pass `-l` at the command line
@@ -71,6 +71,9 @@ if options[:params].class == Hash
71
71
  end
72
72
  end
73
73
 
74
+ # This is the unix standard, so we'll default to this if enabled, but unspecified
75
+ options[:bannerfile] = '/etc/issue.net' if options[:bannerfile] == true
76
+
74
77
  raise 'Specify only one of a login command or SSH settings' if options.include? :command and options.include? :ssh
75
78
 
76
79
  if options.include? :command
@@ -37,6 +37,11 @@ class Abalone < Sinatra::Base
37
37
  warn("websocket opened")
38
38
  ENV['TERM'] ||= 'xterm' # make sure we've got a somewhat sane environment
39
39
 
40
+ if settings.respond_to?(:bannerfile)
41
+ ws.send({'data' => File.read(settings.bannerfile).encode(crlf_newline: true)}.to_json)
42
+ ws.send({'data' => "\r\n\r\n"}.to_json)
43
+ end
44
+
40
45
  reader, @writer, @pid = PTY.spawn(*shell_command)
41
46
  @writer.winsize = [24,80]
42
47
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: abalone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Ford
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-08 00:00:00.000000000 Z
11
+ date: 2016-10-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sinatra