Skip to content

Commit 238208c

Browse files
authored
Merge pull request #102 from billchurch/DEV
Dev
2 parents 88f050b + 86fba56 commit 238208c

File tree

17 files changed

+127
-90
lines changed

17 files changed

+127
-90
lines changed

ChangeLog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Change Log
2-
## [0.2.5] TBD
2+
## [0.2.5] 20180911
33
### Added
44
- Reauth function thanks to @vbeskrovny and @vvalchev (9bbc116)
55
- Controlled by `config.json` option `options.allowreauth` true presents reauth dialog and false hides dialog
66
### Changed
77
- `options.challengeButton` enabled
8-
- previously this configuraiton option did nothing, this now enables the Credentials button site-wide regardless of the `allowreplay` header value
8+
- previously this configuration option did nothing, this now enables the Credentials button site-wide regardless of the `allowreplay` header value
9+
- Updated debug module to v4
910

1011
## [0.2.4] 2018-07-18
1112
### Added

bin/startup_script_webssh_commands.sh

Lines changed: 0 additions & 63 deletions
This file was deleted.

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
## Syncs from BIG-IP and builds a release based on version in extensions/ephemeral_auth/package.json
33

4-
ilxhost=root@192.168.30.210
4+
ilxhost=root@192.168.30.216
55
workspace_name=webssh2
66
package_name=BIG-IP-13.1.0.8-ILX-WebSSH2
77
pua_location=/Users/bill/Documents/GitHub/f5-pua/bin

index.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
// index.js
1+
'use strict'
2+
/* jshint esversion: 6, asi: true, node: true */
23
/*
4+
* index.js
5+
*
36
* WebSSH2 - Web to SSH2 gateway
47
* Bill Church - https://github.com/billchurch/WebSSH2 - May 2017
58
*
69
*/
7-
'use strict'
810

911
var config = require('./server/app').config
1012
var server = require('./server/app').server

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webssh2",
3-
"version": "0.2.3",
3+
"version": "0.2.5",
44
"ignore": [
55
".gitignore"
66
],
@@ -30,7 +30,7 @@
3030
"basic-auth": "^2.0.0",
3131
"colors": "^1.3.1",
3232
"compression": "^1.7.3",
33-
"debug": "^3.1.0",
33+
"debug": "^4.0.0",
3434
"express": "^4.16.3",
3535
"express-session": "^1.15.6",
3636
"morgan": "^1.9.0",

revsync.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
ilxhost=root@192.168.30.216
3+
workspace_name=webssh2
4+
package_name=BIG-IP-13.1.0.8-ILX-WebSSH2
5+
pua_location=/Users/bill/Documents/GitHub/f5-pua/bin
6+
echo 'hello'
7+
rsync -e 'ssh -ax' -av --delete --exclude='.DS_Store' --exclude extensions/$workspace_name/node_modules workspace/. $ilxhost:/var/ilx/workspaces/Common/$workspace_name/.
8+
9+
ssh $ilxhost chown -R root.sdm /var/ilx/workspaces/Common/$workspace_name/
10+
ssh $ilxhost chmod -R ug+rwX,o-w /var/ilx/workspaces/Common/$workspace_name/
11+
ssh $ilxhost chmod u+rw,go-w /var/ilx/workspaces/Common/$workspace_name/version
12+
ssh $ilxhost chmod u+rw,go-w /var/ilx/workspaces/Common/$workspace_name/node_version

server/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
/* jshint esversion: 6, asi: true, node: true */
13
// app.js
24

35
var path = require('path')

server/socket.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
/* jshint esversion: 6, asi: true, node: true */
13
// socket.js
24

35
// private

server/util.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
/* jshint esversion: 6, asi: true, node: true */
13
// util.js
24

35
// private

sync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
ilxhost=root@192.168.30.210
2+
ilxhost=root@192.168.30.216
33
workspace_name=webssh2
44
package_name=BIG-IP-13.1.0.8-ILX-WebSSH2
55
pua_location=/Users/bill/Documents/GitHub/f5-pua/bin

0 commit comments

Comments
 (0)