Browse Source

remove unneeded cleanup script

pull/123/head
butlerx 8 years ago
committed by cbutler
parent
commit
25b5551a46
No known key found for this signature in database GPG Key ID: 9EB3D625BD14DDEC
  1. 8
      README.md
  2. 3
      bin/cleanup

8
README.md

@ -7,7 +7,7 @@ terminal emulator (hterm) which is a full fledged implementation of
terminal emulation written entirely in Javascript. Also it uses
websockets instead of Ajax and hence better response time.
hterm source - https://chromium.googlesource.com/apps/libapps/+/master/hterm/
[hterm source](https://chromium.googlesource.com/apps/libapps/+/master/hterm/)
![Wetty](/terminal.png?raw=true)
@ -154,9 +154,3 @@ Wetty supports all browsers that Google's hterm supports. Wetty has been [report
### Why isn't Wetty working with IE?
[This fix](https://stackoverflow.com/questions/13102116/access-denied-for-localstorage-in-ie10#20848924) has been known to help some users.
### Clean-up
If users dont fully disconnect when finished ssh connections will actually be kept open the simplest
way to deal with this is run `bin/cleanup` on a cron job.

3
bin/cleanup

@ -1,3 +0,0 @@
#!/usr/bin/env bash
kill $(ps aux | grep "ssh" | awk '{print $2}')
Loading…
Cancel
Save