Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The linux configure-tentacle.sh script now supports setting comms ports other than 10943. #792

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions linux-packages/content/configure-tentacle.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ function setupPollingTentacle {
rolesstring=""
workerpoolsstring=""
machinetype=1
servercommsport=10943
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Out of curiosity, do we know why this was strictly only set to 10943 before?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably because it is the default.


read -p "Where would you like Tentacle to store log files? ($logpath):" inputlogpath
logpath=$(assignNonEmptyValue "$inputlogpath" $logpath)
Expand Down Expand Up @@ -149,6 +150,9 @@ function setupPollingTentacle {
read -p "What name would you like to register this Tentacle with? ($displayname): " displaynameinput
displayname=$(assignNonEmptyValue "$displaynameinput" $displayname)

read -p "What port is the Octopus Server comms port? ($servercommsport): " servercommsportinput
servercommsport=$(assignNonEmptyValue "$servercommsportinput" $servercommsport)

case $machinetype in
2 | worker)
#Get worker pools
Expand Down Expand Up @@ -181,9 +185,9 @@ function setupPollingTentacle {
echo -e "sudo /opt/octopus/tentacle/Tentacle configure --instance \"$instancename\" --app \"$applicationpath\" --noListen \"True\" --reset-trust"

if [ $machinetype = 2 ] || [ $machinetype = "worker" ]; then
echo -e "sudo /opt/octopus/tentacle/Tentacle register-worker --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"10943\" $displayauth --space \"$space\" $workerpoolsstring"
echo -e "sudo /opt/octopus/tentacle/Tentacle register-worker --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"$servercommsport\" $displayauth --space \"$space\" $workerpoolsstring"
else
echo -e "sudo /opt/octopus/tentacle/Tentacle register-with --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"10943\" $displayauth --space \"$space\" $envstring $rolesstring"
echo -e "sudo /opt/octopus/tentacle/Tentacle register-with --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"$servercommsport\" $displayauth --space \"$space\" $envstring $rolesstring"
fi

echo -e "sudo /opt/octopus/tentacle/Tentacle service --install --start --instance \"$instancename\"${NC}"
Expand All @@ -200,9 +204,9 @@ function setupPollingTentacle {
exitIfCommandFailed

if [ $machinetype = 2 ] || [ $machinetype = "worker" ]; then
eval sudo /opt/octopus/tentacle/Tentacle register-worker --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"10943\" $auth --space \"$space\" $workerpoolsstring
eval sudo /opt/octopus/tentacle/Tentacle register-worker --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"$servercommsport\" $auth --space \"$space\" $workerpoolsstring
else
eval sudo /opt/octopus/tentacle/Tentacle register-with --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"10943\" $auth --space \"$space\" $envstring $rolesstring
eval sudo /opt/octopus/tentacle/Tentacle register-with --instance \"$instancename\" --server \"$octopusserverurl\" --name \"$displayname\" --comms-style \"TentacleActive\" --server-comms-port \"$servercommsport\" $auth --space \"$space\" $envstring $rolesstring
fi

exitIfCommandFailed
Expand Down