Skip to content

Commit

Permalink
AU: 1 updated - mongodb.install
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Dec 9, 2018
1 parent 45caa77 commit dbde115
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions automatic/mongodb.install/mongodb.install.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>3.6.0</version>
<version>4.0.4</version>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Maurice Kevenaar</owners>
<!-- ============================== -->
Expand All @@ -44,30 +44,31 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<releaseNotes>https://docs.mongodb.com/manual/release-notes/</releaseNotes>
<licenseUrl>https://www.mongodb.com/community/licensing</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/mongodb</packageSourceUrl>
<packageSourceUrl>https://github.com/mkevenaar/chocolatey-packages/tree/master/automatic/mongodb.install</packageSourceUrl>
<docsUrl>https://docs.mongodb.com/</docsUrl>
<projectSourceUrl>https://github.com/mongodb/mongo</projectSourceUrl>
<bugTrackerUrl>https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports</bugTrackerUrl>
<mailingListUrl>https://groups.google.com/forum/#!forum/mongodb-user</mailingListUrl>
<summary>Scalable, high-performance, open source NoSQL database written in C++</summary>
<description>MongoDB (from "humongous") is a scalable, high-performance, open source NoSQL database written in C++.
<description><![CDATA[MongoDB (from "humongous") is a scalable, high-performance, open source NoSQL database written in C++.
MongoDB stores data using a flexible document data model that is similar to JSON. Documents contain one or more fields, including arrays, binary data and sub-documents. Fields can vary from document to document. This flexibility allows development teams to evolve the data model rapidly as their application requirements change.
Developers access documents through rich, idiomatic drivers available in all popular programming languages. Documents map naturally to the objects in modern languages, which allows developers to be extremely productive. Typically, there’s no need for an ORM layer.
#### Package Parameters
The following package parameters can be set:
* `/dataPath:` - where MongoDB stores its database files - defaults to "$env:ProgramData\MongoDB\data\db"
* `/logPath:` - where MongoDB stores its logs - defaults to "$env:ProgramData\MongoDB\log"
* `/dataPath:` - where MongoDB stores its database files - defaults to "$env:ProgramData\MongoDB\data\db"
* `/logPath:` - where MongoDB stores its logs - defaults to "$env:ProgramData\MongoDB\log"
To pass parameters, use `--params "''"` (e.g. `choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'"`).
To have choco remember parameters on upgrade, be sure to set `choco feature enable -n=useRememberedArgumentsForUpgrades`.
**Please Note**: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
</description>
]]></description>
<!-- =============================== -->

<!-- Specifying dependencies and version ranges? https://docs.nuget.org/create/versioning#specifying-version-ranges-in-.nuspec-files -->
Expand Down
4 changes: 2 additions & 2 deletions automatic/mongodb.install/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url64 = 'https://downloads.mariadb.org/f/mariadb-10.3.11/winx64-packages/mariadb-10.3.11-winx64.msi'
$checksum64 = 'f1c6b92b53a74f8eb234070f00c569026ea0ab8e16ca3986dce3d62e731874bb'
$url64 = 'https://fastdl.mongodb.org/win32/mongodb-win32-x86_64-2008plus-ssl-4.0.4-signed.msi'
$checksum64 = '7d5b1f3a655cf2fe9864554699ffd6d7db616889fd211b4f0951d185e8395659'
$checksumType64 = 'sha256'
$silentArgs = 'ADDLOCAL="Server,ServerService,Router,Client,MonitoringTools,ImportExportTools,MiscellaneousTools" /qn /norestart'
$dataPath = "$env:PROGRAMDATA\MongoDB\data\db"
Expand Down

0 comments on commit dbde115

Please sign in to comment.