build script updates
This commit is contained in:
parent
bd56ee299e
commit
7c3cfa59d5
12 changed files with 106 additions and 97 deletions
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
fbb7bc5eb954b47a29361127045102c4421760e1456bab17c43793ec0434f2b6 Build/Release/BIG-IP-ILX-WebSSH2-0.2.8.tgz
|
||||
c775381cbf3612f9b9941816ff8f0597c7de4dfac59d9ce3ec33fb675d3f2be4 Build/Release/BIG-IP-ILX-WebSSH2-0.2.8.tgz
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1 +1 @@
|
|||
fbb7bc5eb954b47a29361127045102c4421760e1456bab17c43793ec0434f2b6 Build/Release/BIG-IP-ILX-WebSSH2-0.2.8.tgz
|
||||
c775381cbf3612f9b9941816ff8f0597c7de4dfac59d9ce3ec33fb675d3f2be4 Build/Release/BIG-IP-ILX-WebSSH2-0.2.8.tgz
|
||||
|
|
|
|||
|
|
@ -1,21 +1,33 @@
|
|||
#!/bin/bash
|
||||
## Syncs from BIG-IP and builds a release based on version in extensions/ephemeral_auth/package.json
|
||||
|
||||
#
|
||||
source ./scripts/env.sh
|
||||
|
||||
source ./scripts/util.sh
|
||||
|
||||
./scripts/pull.sh
|
||||
|
||||
# get version of package from package.json
|
||||
package_version=$(jq -r ".version" workspace/extensions/webssh2/package.json)
|
||||
|
||||
# creates new workspace name with version
|
||||
webssh_workspace_name=$webssh_workspace_name-$package_version
|
||||
|
||||
ssh -o ClearAllForwardings=yes $webssh_ilxhost /bin/tar czf - -C /var/ilx/workspaces/Common/$webssh_workspace_name . > Build/Release/$webssh_package_name-$package_version.tgz
|
||||
echoNotice "Creating workspace package"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost /bin/tar --exclude='./extensions/webssh2/config.json' -czf - -C /var/ilx/workspaces/Common/$webssh_workspace_name . > Build/Release/$webssh_package_name-$package_version.tgz"
|
||||
|
||||
shasum -a 256 Build/Release/$webssh_package_name-$package_version.tgz > Build/Release/$webssh_package_name-$package_version.tgz.sha256
|
||||
echoNotice "Creating SHA256 hash"
|
||||
runCommand "shasum -a 256 Build/Release/$webssh_package_name-$package_version.tgz > Build/Release/$webssh_package_name-$package_version.tgz.sha256"
|
||||
|
||||
cp Build/Release/$webssh_package_name-$package_version.tgz $webssh_pua_location/$webssh_package_name-current.tgz
|
||||
cp Build/Release/$webssh_package_name-$package_version.tgz.sha256 $webssh_pua_location/$webssh_package_name-current.tgz.sha256
|
||||
echoNotice "Copying to current"
|
||||
runCommand "cp Build/Release/$webssh_package_name-$package_version.tgz $webssh_pua_location/$webssh_package_name-current.tgz && \
|
||||
cp Build/Release/$webssh_package_name-$package_version.tgz.sha256 $webssh_pua_location/$webssh_package_name-current.tgz.sha256"
|
||||
|
||||
find . -name '.DS_Store' -type f -delete
|
||||
echoNotice "Deleting any '.DS_Store' files"
|
||||
runCommand "find . -name '.DS_Store' -type f -delete"
|
||||
|
||||
echo -e "\nWorkspace packages located at:\n"
|
||||
echo " Build/Release/$webssh_package_name-$package_version.tgz"
|
||||
echo " Build/Release/$webssh_package_name-$package_version.tgz.sha256"
|
||||
echo " $webssh_pua_location/$webssh_package_name-current.tgz"
|
||||
echo " $webssh_pua_location/$webssh_package_name-current.tgz.sha256"
|
||||
|
||||
echo -e "\n👍 Build Complete 👍\n"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
#webssh_ilxhost=root@192.168.30.209
|
||||
webssh_ilxhost=root@192.168.30.203
|
||||
webssh_workspace_name=webssh2
|
||||
|
|
|
|||
|
|
@ -6,37 +6,23 @@
|
|||
#
|
||||
# Pulls an ILX workspace from a BIG-IP and syncs to ./workspace, excludes
|
||||
# ./workspace/extensions/ephemeral_auth/node_modules.
|
||||
|
||||
#
|
||||
source ./scripts/env.sh
|
||||
|
||||
source ./scripts/util.sh
|
||||
|
||||
# get version of package from package.json
|
||||
PACKAGE_VERSION=$(jq -r ".version" workspace/extensions/webssh2/package.json 2>&1)
|
||||
|
||||
# creates new workspace name with version
|
||||
webssh_workspace_name=$webssh_workspace_name-$PACKAGE_VERSION
|
||||
|
||||
echo "Pull ${fgLtCya}$webssh_workspace_name${fgLtWhi} from ${fgLtCya}$webssh_ilxhost${fgLtWhi}"
|
||||
|
||||
# check to see if the workspace actually exists before attempting to copy over
|
||||
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh list ilx workspace $webssh_workspace_name one-line 2>&1)
|
||||
result="$?" 2>&1
|
||||
echoNotice "Checking for existing workspace ${fgLtCya}$webssh_workspace_name${fgLtWhi}"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh list ilx workspace $webssh_workspace_name one-line 2>&1"
|
||||
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n\n"
|
||||
echo "Workspace: $webssh_workspace_name not found, are you sure that's the right one?"
|
||||
echo -e "\n\n"
|
||||
echo "Terminating."
|
||||
echo -e "\n\n"
|
||||
exit 255
|
||||
fi
|
||||
echoNotice "Pulling ${fgLtCya}$webssh_workspace_name${fgLtWhi} from ${fgLtCya}$webssh_ilxhost${fgLtWhi}"
|
||||
runCommand "rsync -e 'ssh -o ClearAllForwardings=yes -ax' -avq --include=\"extensions/ephemeral_auth/node_modules/f5-*\" --exclude=\".DS_Store\" --exclude=\"extensions/ephemeral_auth/node_modules/*\" $webssh_ilxhost:/var/ilx/workspaces/Common/$webssh_workspace_name/. workspace/. 2>&1"
|
||||
|
||||
output=$(rsync -e 'ssh -o ClearAllForwardings=yes -ax' -avq --include="extensions/ephemeral_auth/node_modules/f5-*" --exclude=".DS_Store" --exclude="extensions/ephemeral_auth/node_modules/*" $webssh_ilxhost:/var/ilx/workspaces/Common/$webssh_workspace_name/. workspace/. 2>&1)
|
||||
result="$?" 2>&1
|
||||
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n\n"
|
||||
echo "Something went wrong with the rsync..."
|
||||
echo -e "\n\n"
|
||||
echo "Terminating."
|
||||
echo -e "\n\n"
|
||||
exit 255
|
||||
fi
|
||||
echo -e "\n👍 Pull complete 👍\n"
|
||||
|
|
|
|||
|
|
@ -6,86 +6,54 @@
|
|||
#
|
||||
# Pushes ./workspace to a BIG-IP ILX workspace
|
||||
#
|
||||
|
||||
source ./scripts/env.sh
|
||||
|
||||
source ./scripts/util.sh
|
||||
|
||||
# get version of package from package.json
|
||||
PACKAGE_VERSION=$(jq -r ".version" workspace/extensions/webssh2/package.json 2>&1)
|
||||
|
||||
# creates new workspace name with version
|
||||
webssh_workspace_name=$webssh_workspace_name-$PACKAGE_VERSION
|
||||
|
||||
echo -e "\n"
|
||||
echo "Checking $webssh_ilxhost for workspace $webssh_workspace_name"
|
||||
echo "Push ${fgLtCya}$webssh_workspace_name${fgLtWhi} to ${fgLtCya}$webssh_ilxhost${fgLtWhi}"
|
||||
|
||||
echoNotice "Checking $webssh_ilxhost for workspace $webssh_workspace_name"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh list ilx workspace $webssh_workspace_name one-line 2>&1)
|
||||
result="$?" 2>&1
|
||||
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n"
|
||||
echo "Workspace: $webssh_workspace_name not found, attempting to create"
|
||||
echo -e "\n\n"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost "tmsh create ilx workspace $webssh_workspace_name node-version 6.9.1" 2>&1)
|
||||
result="$?" 2>&1
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n\n"
|
||||
echo "Error creating workspace: $webssh_workspace_name... I give up, not sure what's going on..."
|
||||
echo -e "\n\n"
|
||||
exit 255
|
||||
fi
|
||||
echo "❌"
|
||||
echoNotice "Attempting to create workspace"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost \"tmsh create ilx workspace $webssh_workspace_name node-version 6.9.1\" 2>&1"
|
||||
else
|
||||
echo "✅"
|
||||
fi
|
||||
|
||||
echo -e "\n"
|
||||
echo "Pushing ./workspace to $webssh_ilxhost at $webssh_workspace_name"
|
||||
rsync -e 'ssh -o ClearAllForwardings=yes -ax' -avq --delete --exclude='.DS_Store' --exclude extensions/webssh2/node_modules workspace/. $webssh_ilxhost:/var/ilx/workspaces/Common/$webssh_workspace_name/.
|
||||
echoNotice "Pushing ./workspace to $webssh_ilxhost at $webssh_workspace_name"
|
||||
runCommand "rsync -e 'ssh -o ClearAllForwardings=yes -ax' -avq --delete --exclude='.DS_Store' --exclude extensions/webssh2/node_modules workspace/. $webssh_ilxhost:/var/ilx/workspaces/Common/$webssh_workspace_name/."
|
||||
|
||||
echo -e "\n"
|
||||
echo "Installing node modules at $webssh_workspace_name on $webssh_ilxhost"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost "cd /var/ilx/workspaces/Common/$webssh_workspace_name/extensions/webssh2; npm i --production" 2>&1)
|
||||
result="$?" 2>&1
|
||||
echoNotice "Installing node modules at $webssh_workspace_name on $webssh_ilxhost"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost \"cd /var/ilx/workspaces/Common/$webssh_workspace_name/extensions/webssh2; npm i --production\" 2>&1"
|
||||
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n"
|
||||
echo "Error installing modules \"npm i --production\", process incomplete."
|
||||
echo -e "\n"
|
||||
echo "See output below:"
|
||||
echo -e "\n"
|
||||
echo $output
|
||||
|
||||
exit 255
|
||||
fi
|
||||
|
||||
echo -e "\n"
|
||||
echo "Setting permissions at $webssh_workspace_name on $webssh_ilxhost"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost "chown -R root.sdm /var/ilx/workspaces/Common/$webssh_workspace_name/; \
|
||||
echoNotice "Setting permissions at $webssh_workspace_name on $webssh_ilxhost"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost \"chown -R root.sdm /var/ilx/workspaces/Common/$webssh_workspace_name/; \
|
||||
chmod -R ug+rwX,o-w /var/ilx/workspaces/Common/$webssh_workspace_name/; \
|
||||
chmod u+rw,go-w /var/ilx/workspaces/Common/$webssh_workspace_name/version; \
|
||||
chmod u+rw,go-w /var/ilx/workspaces/Common/$webssh_workspace_name/node_version" 2>&1)
|
||||
result="$?" 2>&1
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n\n"
|
||||
echo "Error setting permissions... I give up, not sure what's going on..."
|
||||
echo -e "\n\n"
|
||||
exit 255
|
||||
fi
|
||||
chmod u+rw,go-w /var/ilx/workspaces/Common/$webssh_workspace_name/node_version\" 2>&1"
|
||||
|
||||
echo -e "\n"
|
||||
echo "Deleting $webssh_workspace_name/node_modules/.bin on $webssh_ilxhost"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost "cd /var/ilx/workspaces/Common/$webssh_workspace_name/extensions/webssh2; rm -rf node_modules/.bin" 2>&1)
|
||||
result="$?" 2>&1
|
||||
echoNotice "Deleting $webssh_workspace_name/node_modules/.bin on $webssh_ilxhost"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost \"cd /var/ilx/workspaces/Common/$webssh_workspace_name/extensions/webssh2; rm -rf node_modules/.bin\" 2>&1"
|
||||
|
||||
echo "Switching plugin to new workspace..."
|
||||
# switch plugin to new workspace
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh modify ilx plugin WebSSH_plugin from-workspace $webssh_workspace_name 2>&1)
|
||||
echoNotice "Checking to see if plugin exists"
|
||||
output=$(ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh list ilx plugin WebSSH_plugin one-line 2>&1)
|
||||
result="$?" 2>&1
|
||||
if [ $result -ne 0 ]; then
|
||||
echo -e "\n\n"
|
||||
echo "I give up, not sure what's going on..."
|
||||
echo -e "\n\n"
|
||||
exit 255
|
||||
echo "❌"
|
||||
echoNotice "Attempting to create plugin"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh create ilx plugin WebSSH_plugin from-workspace $webssh_workspace_name extensions { webssh2 { concurrency-mode single ilx-logging enabled } } 2>&1"
|
||||
else
|
||||
echo "✅"
|
||||
echoNotice "Switching plugin to $webssh_workspace_name"
|
||||
runCommand "ssh -o ClearAllForwardings=yes $webssh_ilxhost tmsh modify ilx plugin WebSSH_plugin from-workspace $webssh_workspace_name extensions { webssh2 { concurrency-mode single ilx-logging enabled } } 2>&1"
|
||||
fi
|
||||
|
||||
echo -e "\n"
|
||||
echo "Push complete, associated $auth_workspace_name with a WebSSH_plugin plugin. Test and validate."
|
||||
echo -e "\n"
|
||||
echo -e "\n👍 Push complete 👍\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,19 @@
|
|||
#!/bin/bash
|
||||
# Utility functions / scripts
|
||||
|
||||
echoNotice () { echo -e -n "\n$@... "; }
|
||||
|
||||
fgLtRed=$(tput bold;tput setaf 1)
|
||||
fgLtGrn=$(tput bold;tput setaf 2)
|
||||
fgLtYel=$(tput bold;tput setaf 3)
|
||||
fgLtBlu=$(tput bold;tput setaf 4)
|
||||
fgLtMag=$(tput bold;tput setaf 5)
|
||||
fgLtCya=$(tput bold;tput setaf 6)
|
||||
fgLtWhi=$(tput bold;tput setaf 7)
|
||||
fgLtGry=$(tput bold;tput setaf 8)
|
||||
|
||||
echo ${fgLtWhi}
|
||||
|
||||
# check for jq and try to install...
|
||||
output=$(which jq 2>&1)
|
||||
if [[ $? -ne 0 ]]; then
|
||||
|
|
@ -27,4 +40,35 @@ if [[ $? -ne 0 ]]; then
|
|||
exit 255
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# checks the output of a command to get the status and report/handle failure
|
||||
checkOutput() {
|
||||
if [ $result -eq 0 ]; then
|
||||
# success
|
||||
#echo "${fgLtGrn}[OK]${fgLtWhi}"
|
||||
echo "✅"
|
||||
return
|
||||
else
|
||||
# failure
|
||||
tput bel;tput bel;tput bel;tput bel
|
||||
#echo "${fgLtRed}[FAILED]${fgLtWhi}"
|
||||
echo "❌"
|
||||
echo -e "\nPrevious command failed in ${script_path}/${scriptname} with error level: ${result}"
|
||||
echo -e "\nCommand:\n"
|
||||
echo " ${command}"
|
||||
echo -e "\nSTDOUT/STDERR:\n"
|
||||
echo ${output}
|
||||
exit 255
|
||||
fi
|
||||
}
|
||||
|
||||
# run a comand and check call checkOutput
|
||||
runCommand() {
|
||||
# $1 command
|
||||
command=$@
|
||||
output=$((eval $command) 2>&1)
|
||||
result="$?" 2>&1
|
||||
prevline=$(($LINENO-2))
|
||||
checkOutput
|
||||
}
|
||||
Binary file not shown.
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"listen": {
|
||||
"ip": "0.0.0.0",
|
||||
"ip": "127.0.0.1",
|
||||
"port": 2222
|
||||
},
|
||||
"user": {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ var logger = require('morgan')
|
|||
// sane defaults if config.json or parts are missing
|
||||
let config = {
|
||||
'listen': {
|
||||
'ip': '0.0.0.0',
|
||||
'ip': '127.0.0.1',
|
||||
'port': 2222
|
||||
},
|
||||
'user': {
|
||||
|
|
|
|||
Loading…
Reference in a new issue