Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,613

Downloads of v 0.6.4:

235

Last Update:

05 Sep 2018

Package Maintainer(s):

Software Author(s):

  • Andreas Mosti

Tags:

stratos nuget chocolatey service

Stratos

This is not the latest version of Stratos available.

  • 1
  • 2
  • 3

0.6.4 | Updated: 05 Sep 2018

Downloads:

2,613

Downloads of v 0.6.4:

235

Maintainer(s):

Software Author(s):

  • Andreas Mosti

Stratos 0.6.4

This is not the latest version of Stratos available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

This package has a dependency for dotnet4.5.2, but that package requires a reboot to work.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Stratos, run the following command from the command line or from PowerShell:

>

To upgrade Stratos, run the following command from the command line or from PowerShell:

>

To uninstall Stratos, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade stratos -y --source="'INTERNAL REPO URL'" --version="'0.6.4'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade stratos -y --source="'INTERNAL REPO URL'" --version="'0.6.4'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install stratos
  win_chocolatey:
    name: stratos
    version: '0.6.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'stratos' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.6.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller stratos
{
    Name     = "stratos"
    Version  = "0.6.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'stratos':
  ensure   => '0.6.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator gep13 on 07 Sep 2018.

Description

Stratos, a simple HTTP service to list out installed NuGet and Chocolatey packages from a host.


tools\LICENSE.txt
MIT License

Copyright (c) 2018 Andreas Mosti

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\VERIFICATION.txt
VERIFICATION Verification is intended to assist the Chocolatey moderators and community in verifying that this package's contents are
trustworthy.

This package is published by Andreas Mosti. The included binaries are: 

LightInject.Nancy.dll
LightInject.dll
Microsoft.Web.XmlTransform.dll
Nancy.Hosting.Self.dll
Nancy.Serialization.JsonNet.dll
Nancy.dll
Newtonsoft.Json.dll
Topshelf.Linux.dll
Topshelf.Nancy.dll
Topshelf.dll
log4net.dll
Stratos.exe
tools\chocolateyUninstall.ps1
tools\chocolateyInstall.ps1
Write-Host "Installing Stratos as as windows service..."

try {

    $service_name = "StratosService"
    $process_name = "StratosService"
    $serviceFileName = "Stratos.exe"

    $PSScriptRoot = Split-Path -parent $MyInvocation.MyCommand.Definition
    $packageDir = $PSScriptRoot | Split-Path;
    $srcDir = "$($PSScriptRoot)\..\bin"
    $destDir = "$srcDir"

    $service = Get-Service | Where-Object {$_.Name -eq $service_name}

    if($service){
        Stop-Service $service_name
        $service.WaitForStatus("Stopped")
        kill -processname $process_name -force -ErrorAction SilentlyContinue
        Wait-Process -Name $process_name -ErrorAction SilentlyContinue
        Write-Host "Uninstalling $service_name..."

        $fileToUninstall = Join-Path "$srcDir\" $serviceFileName
        . $fileToUninstall uninstall
    }

    $fileToInstall = Join-Path "$destDir\" $serviceFileName
    . $fileToInstall install
}
catch {
    throw $_.Exception
}
try{
    . $fileToInstall start
}
catch{
    Write-Host "$process_name was succesfully installed, but could not be started. This is most likely beacause of a configuration error. Please check the Windows Event Log."
}
bin\Topshelf.Nancy.dll
md5: 9B90A7A6D78B6E58DBA209ECC9126BC9 | sha1: F31F5C2E820C94E124431824B6772094EF842DD4 | sha256: 2A4C9689E099B65D384C6D5C45F648E8484151EC39CE7C6D753F5895B396EB22 | sha512: 89B2CC03247CE84A68BF6FB015F4ECAD21055D786C0C342EDA868C4683716090C21048FEBFF5F28A9DAFDA532375FBBC8746591727A27CCB61E717E542008887
bin\Topshelf.Linux.dll
md5: 34E1EEFA86FFF389175077AE9624D273 | sha1: F750C8C628493B2E421A40CD519209091B77AEA0 | sha256: 7F7BB7BAE5A3028DDE1B337A59AE950CA1B9A166486607FDE110FF3D26F79212 | sha512: 1E1157DA3251A2B489FA5938A79627B11E3105FDE43BB9D3E7AFAB1535997905379A1BC063CB49F01117354D316FB03CF8741683E59FD423EF4822B2374B3BF6
bin\Topshelf.dll
md5: FC86486B4EDC113C235E850D52B978D3 | sha1: 8332489D9BCC06CE6B018A8307B97068C2583EB7 | sha256: FE26AB57FE6B5C1F8777BCC247D984553DE501452AA8B6B697C0CB143450B067 | sha512: A09D79A9399E5BF0A29B3D5BE37524FDA82A29887BDD3FF7463AA9979FB47D7FADB7DCA41F7AC1D9AB0A300EBF99A07AC4A32831B9A2F2BE7E173E42B547D60A
bin\Stratos.exe.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
	<runtime>
  		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
			<dependentAssembly>
    		<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
    		<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="9.0.0.0"/>
			</dependentAssembly>
		</assemblyBinding>
	</runtime>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
</startup>
</configuration>
bin\Stratos.exe
md5: D1BA8C65590059A5EA11A08084670416 | sha1: E8DE17E66D9A64B1DCC14817733F8DE9617967E2 | sha256: CD59F89EEC46E0F13AB81B7A61B04389006A2E0E3EF0419F44B7F4DCD3166A6A | sha512: 5E8BE95FB611CCFA7316AE69CD4B1EC02FA2705F71699A75CAE1B3C88D176E1E9F2722521848C72E8B3440937B1BA2AE95EB6084B964B8CE6A23868BBCA29ADB
bin\Newtonsoft.Json.dll
md5: C53737821B861D454D5248034C3C097C | sha1: 6B0DA75617A2269493DC1A685D7A0B07F2E48C75 | sha256: 575E30F98E4EA42C9E516EDC8BBB29AD8B50B173A3E6B36B5BA39E133CCE9406 | sha512: 289543F5EEA472E9027030E24011BEA1E49E91059241FE6EB732E78F51822313E47D1E4769FA1C9C7D6139F6A97DCFEF2946836B3383E8643988BF8908162FB9
bin\Nancy.Serialization.JsonNet.dll
md5: 289D10828C34D6F7742DFA438DB492D8 | sha1: 2FACBD8F9A733F43A96EDFD3673965B164339E90 | sha256: F48A150249566FCD481AC38FA834B354BD754CBE32D4E9CD9F2489BD32D2611D | sha512: 2B3302F9976DC749C001C2F2BC826CE0A16BAE299BEA9A8E47BE1DF9968BC87071B8AD155736B0DB4FB6D5107AC688718C5EB1F4679CC51B91E3DCE636918742
bin\Nancy.Hosting.Self.dll
md5: 13DECF5B3D31D4896CC1DC292207A3E9 | sha1: 5F448F8CBF12A9BE55C046351AABC146E2388BF0 | sha256: 677A03C4E1BE4B17177F224F453F1DA3B120781AEF00DF8B42D92BFA8746D9BA | sha512: 9D786153220A2D7237A54F99209D0BA4D9E3210D6E81779C8A9412F65691ECBD46DF55945C732B034425AC241E9891769008D8516B5FB81D3CC280AD2138E311
bin\Nancy.dll
md5: BEF9DA30592DD1B19586A8B0B4241DC6 | sha1: E60C25558B4C510F5E3D7347E60F467E2F5B8146 | sha256: 2E74BB7A5077D3AAF671EA623E04A25824BA31892AD3804ED12598FD3610D64E | sha512: D6AF7A02606B9C6A311E1B9B5B0A2D1F89AC99CE06EF11A3CF7A4A40A1100C6B98654DDAC33684BD8BF83711F2BA6D27A5DF42B4BF6616171A01619E7563A438
bin\Microsoft.Web.XmlTransform.dll
md5: 6AD7D1E92C9833F4BDDE6A4BC84F2E1A | sha1: B38D23B6A960F5F07664565835137FE3C8FDB7ED | sha256: 13DCF5066E00152238191314D4A46605204FFABDBB830BDD0C97DF3027D1261D | sha512: 01C4ECC46576618394FBBEE701F5A726F97D31FB39D5F1C6305D21CA7AD0B0ABC09B69FB733C42D4D1203FCE78DD3F3D5129C21EA0BC9B92D0AB3A7BF09C006C
bin\log4net.dll
md5: B89CB7F3F1A1E2807E708F5435DEB13D | sha1: 82CDE65A7514C0E465EE0D505BE56C56639FF0B1 | sha256: 27D26AAB42F7CAB35BF51D0536C67ED553FC97B670226B868805E7C6927E5C87 | sha512: 0BD0DA0CC01EB62BA1DEA21666BCCF76DB6C7DCB2DDFA608BEA61DA0FFA230A60A66E91449B2664DE006066EB63D26DAAFB3BF7B932C8A22CCD347DBD707E68B
bin\LightInject.Nancy.dll
md5: C9C5E6479E54113AA2FC24851D203005 | sha1: 9ECA9B26B69A1CB1E20CDDE88DE4E18E8071C2EB | sha256: F21A44A394628EC4CF06BA362580CED11D074C54694DBE19D880EBA6A59AD118 | sha512: 0206953E7A8FA6AF22DE28503D9C2D47B2118390BF9E71BCA86F80B7229ADD14D56BE8C2AB39D55AD789B22E28DEBB27C9F10C5BAB36EE6353D593B8AF602313
bin\LightInject.dll
md5: AE0C5562A5F3D26ACFF991D0590F0EA5 | sha1: 4F1BB25F995A0BA163EC652A9CF7095295ADAE0F | sha256: 7F08DA2A6A834DB756BD1D5544A653F7D90753CF3BF9C48FE27B3884E81553D9 | sha512: 60D3451084B08C8AF0FBC4A131B58816424944D0BE8D48D334EE2F3E8FAE711D4B3D7467EB548A8B18CB6D1254E95BDD81FDC7EF8F5511F5346812FBD3973D3D

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Stratos 0.7.1 1207 Saturday, March 30, 2019 Approved
Stratos 0.7.0 417 Thursday, March 28, 2019 Approved
Stratos 0.6.5 200 Friday, December 7, 2018 Approved
Stratos 0.6.4 235 Wednesday, September 5, 2018 Approved
Stratos 0.6.3 220 Saturday, September 1, 2018 Approved
Stratos 0.6.2 195 Wednesday, August 1, 2018 Approved

Discussion for the Stratos Package

Ground Rules:

  • This discussion is only about Stratos and the Stratos package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Stratos, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus