Skip to content

Commit 01a8aa4

Browse files
committed
Updated to latest version of OctopusDeploy tentacle (fixes #7)
1 parent 93b5328 commit 01a8aa4

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
c:\Install\Tentacle\Agent\Tentacle.exe create-instance --instance "Tentacle" --config "c:\Install\Tentacle.config" --console
2-
c:\Install\Tentacle\Agent\Tentacle.exe new-certificate --instance "Tentacle" --console
3-
c:\Install\Tentacle\Agent\Tentacle.exe configure --instance "Tentacle" --home "c:\Deployment" --console
4-
c:\Install\Tentacle\Agent\Tentacle.exe configure --instance "Tentacle" --app "c:\Deployments\Applications" --console
5-
c:\Install\Tentacle\Agent\Tentacle.exe register-with --instance "Tentacle" --server "%OctopusServer%" --environment "%TentacleEnvironment%" --role "%TentacleRole%" --apiKey "%OctopusApiKey%" --name "%machineName%" --comms-style TentacleActive --force --console
6-
c:\Install\Tentacle\Agent\Tentacle.exe service --instance "Tentacle" --install --start --console
1+
c:\Install\Tentacle\Tentacle.exe create-instance --instance "Tentacle" --config "c:\Install\Tentacle.config" --console
2+
c:\Install\Tentacle\Tentacle.exe new-certificate --instance "Tentacle" --console
3+
c:\Install\Tentacle\Tentacle.exe configure --instance "Tentacle" --home "c:\Deployment" --console
4+
c:\Install\Tentacle\Tentacle.exe configure --instance "Tentacle" --app "c:\Deployments\Applications" --console
5+
c:\Install\Tentacle\Tentacle.exe register-with --instance "Tentacle" --server "%OctopusServer%" --environment "%TentacleEnvironment%" --role "%TentacleRole%" --apiKey "%OctopusApiKey%" --name "%machineName%" --comms-style TentacleActive --force --console
6+
c:\Install\Tentacle\Tentacle.exe service --instance "Tentacle" --install --start --console

AzureWebFarm.OctopusDeploy/Infrastructure/OctopusDeploy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void ConfigureTentacle()
3232
var tentacleDeploymentsPath = _config.TentacleDeploymentsPath;
3333
var tentacleInstallPath = _config.TentacleInstallPath;
3434
var tentacleDir = Path.Combine(tentacleInstallPath, "Tentacle");
35-
var tentaclePath = Path.Combine(Path.Combine(tentacleDir, "Agent"), "Tentacle.exe");
35+
var tentaclePath = Path.Combine(tentacleDir, "Tentacle.exe");
3636

3737
_processRunner.Run(tentaclePath, string.Format("create-instance {0} --config \"{1}\" --console", instanceArg, Path.Combine(tentacleInstallPath, "Tentacle.config")));
3838
_processRunner.Run(tentaclePath, string.Format("new-certificate {0} --console", instanceArg));

ExampleWebFarm/Startup/startup.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
try
44
{
5-
$TentacleDownloadPath = "http://download.octopusdeploy.com/octopus/Octopus.Tentacle.2.0.8.977.msi"
5+
$TentacleDownloadPath = "http://download.octopusdeploy.com/octopus/Octopus.Tentacle.2.1.3.1223-x64.msi"
66
$TentacleLocalDebuggingPath = "C:\Octopus.Tentacle.msi"
77
$PathToInstall = $env:PathToInstall
88
$PathToDeployments = $env:PathToDeployments

0 commit comments

Comments
 (0)