Skip to content

Commit 5f7d3c7

Browse files
authored
Merge pull request #73 from EUCPilots/updates
Updates
2 parents a176943 + 05332de commit 5f7d3c7

File tree

7 files changed

+65
-58
lines changed

7 files changed

+65
-58
lines changed

Apps/Get-GrafanaAgent.ps1 renamed to Apps/Get-GrafanaAlloy.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
function Get-GrafanaAgent {
1+
function Get-GrafanaAlloy {
22
<#
33
.NOTES
44
Author: Aaron Parker
5-
65
#>
76
[OutputType([System.Management.Automation.PSObject])]
87
[CmdletBinding(SupportsShouldProcess = $false)]

Apps/Get-OracleJava25.ps1

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
function Get-OracleJava25 {
2+
<#
3+
.NOTES
4+
Author: Aaron Parker
5+
6+
#>
7+
[OutputType([System.Management.Automation.PSObject])]
8+
[CmdletBinding(SupportsShouldProcess = $false)]
9+
param (
10+
[Parameter(Mandatory = $false, Position = 0)]
11+
[ValidateNotNullOrEmpty()]
12+
[System.Management.Automation.PSObject]
13+
$res = (Get-FunctionResource -AppName ("$($MyInvocation.MyCommand)".Split("-"))[1])
14+
)
15+
16+
$Output = Get-OracleJava -res $res
17+
Write-Output -InputObject $Output
18+
}

Apps/Get-VisualCppRedistAIO.ps1

Lines changed: 0 additions & 27 deletions
This file was deleted.

Manifests/GrafanaAgent.json renamed to Manifests/GrafanaAlloy.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"Name": "Grafana Agent",
3-
"Source": "https://grafana.com/docs/agent/",
2+
"Name": "Grafana Alloy",
3+
"Source": "https://grafana.com/docs/alloy/latest/",
44
"Get": {
5-
"Uri": "https://api.github.com/repos/grafana/agent/releases/latest",
5+
"Uri": "https://api.github.com/repos/grafana/alloy/releases/latest",
66
"MatchVersion": "(\\d+(\\.\\d+){1,4}).*",
77
"MatchFileTypes": "\\.exe$|\\.msi$|\\.zip$"
88
},

Manifests/MicrosoftODBCDriverForSQLServer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
},
88
"Download": {
99
"Uri": [
10-
"https://go.microsoft.com/fwlink/?linkid=2266640",
11-
"https://go.microsoft.com/fwlink/?linkid=2266742",
12-
"https://go.microsoft.com/fwlink/?linkid=2266837"
10+
"https://go.microsoft.com/fwlink/?linkid=2335671",
11+
"https://go.microsoft.com/fwlink/?linkid=2335863",
12+
"https://go.microsoft.com/fwlink/?linkid=2335756"
1313
],
1414
"Language": {
1515
"English": "0x409",

Manifests/OracleJava25.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"Name": "Oracle Java 25",
3+
"Source": "https://www.oracle.com/java/technologies/downloads/#java25",
4+
"Get": {
5+
"Update": {
6+
"Uri": "https://www.java.com/releases/releases.json",
7+
"Headers": {
8+
"scheme": "https",
9+
"accept-language": "en-AU,en-GB;q=0.9,en;q=0.8,en-US;q=0.7",
10+
"accept-encoding": "gzip, deflate, br",
11+
"method": "GET",
12+
"path": "/releases/releases.json",
13+
"accept": "application/json",
14+
"cache-control": "max-age=0",
15+
"authority": "www.java.com"
16+
},
17+
"UserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.3124.85",
18+
"Family": 25,
19+
"DateFormat": "yyyy-MM-dd"
20+
},
21+
"Download": {
22+
"Uri": {
23+
"zip": "https://download.oracle.com/java/25/latest/jdk-25_windows-x64_bin.zip",
24+
"exe": "https://download.oracle.com/java/25/latest/jdk-25_windows-x64_bin.exe",
25+
"msi": "https://download.oracle.com/java/25/latest/jdk-25_windows-x64_bin.msi"
26+
}
27+
}
28+
},
29+
"Install": {
30+
"Setup": "",
31+
"Physical": {
32+
"Arguments": "",
33+
"PostInstall": []
34+
},
35+
"Virtual": {
36+
"Arguments": "",
37+
"PostInstall": []
38+
}
39+
}
40+
}

Manifests/VisualCppRedistAIO.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)