feat: 指定安装版本

This commit is contained in:
Akizon77
2025-06-27 12:26:51 +08:00
parent 0b95c5aaa6
commit dff6cdc1e2
2 changed files with 52 additions and 22 deletions

View File

@@ -13,6 +13,7 @@ $InstallDir = Join-Path $Env:ProgramFiles "Komari"
$ServiceName = "komari-agent"
$GitHubProxy = ""
$KomariArgs = @()
$InstallVersion = ""
# Parse script arguments
for ($i = 0; $i -lt $args.Count; $i++) {
@@ -20,6 +21,7 @@ for ($i = 0; $i -lt $args.Count; $i++) {
"--install-dir" { $InstallDir = $args[$i + 1]; $i++; continue }
"--install-service-name" { $ServiceName = $args[$i + 1]; $i++; continue }
"--install-ghproxy" { $GitHubProxy = $args[$i + 1]; $i++; continue }
"--install-version" { $InstallVersion = $args[$i + 1]; $i++; continue }
Default { $KomariArgs += $args[$i] }
}
}
@@ -158,6 +160,11 @@ Log-Config "Service name: $ServiceName"
Log-Config "Install directory: $InstallDir"
Log-Config "GitHub proxy: $ProxyDisplay"
Log-Config "Agent arguments: $($KomariArgs -join ' ')"
if ($InstallVersion -ne "") {
Log-Config "Specified agent version: $InstallVersion"
} else {
Log-Config "Agent version: Latest"
}
# Paths
$BinaryName = "komari-agent-windows-$arch.exe"
@@ -198,21 +205,29 @@ function Uninstall-Previous {
}
Uninstall-Previous
# Fetch latest release version
$ApiUrl = "https://api.github.com/repos/komari-monitor/komari-agent/releases/latest"
try {
$release = Invoke-RestMethod -Uri $ApiUrl -UseBasicParsing
$latestVersion = $release.tag_name
$versionToInstall = ""
if ($InstallVersion -ne "") {
Log-Info "Attempting to install specified version: $InstallVersion"
$versionToInstall = $InstallVersion
}
catch {
Log-Error "Failed to fetch latest version: $_"
exit 1
else {
$ApiUrl = "https://api.github.com/repos/komari-monitor/komari-agent/releases/latest"
try {
Log-Step "Fetching latest release version from GitHub API..."
$release = Invoke-RestMethod -Uri $ApiUrl -UseBasicParsing
$versionToInstall = $release.tag_name
Log-Success "Latest version fetched: $versionToInstall"
}
catch {
Log-Error "Failed to fetch latest version: $_"
exit 1
}
}
Log-Success "Latest version: $latestVersion"
Log-Success "Installing Komari Agent version: $versionToInstall"
# Construct download URL
$BinaryName = "komari-agent-windows-$arch.exe"
$DownloadUrl = if ($GitHubProxy) { "$GitHubProxy/https://github.com/komari-monitor/komari-agent/releases/download/$latestVersion/$BinaryName" } else { "https://github.com/komari-monitor/komari-agent/releases/download/$latestVersion/$BinaryName" }
$DownloadUrl = if ($GitHubProxy) { "$GitHubProxy/https://github.com/komari-monitor/komari-agent/releases/download/$versionToInstall/$BinaryName" } else { "https://github.com/komari-monitor/komari-agent/releases/download/$versionToInstall/$BinaryName" }
# Download and install
New-Item -ItemType Directory -Path $InstallDir -Force | Out-Null
@@ -243,4 +258,4 @@ Log-Success "Service $ServiceName installed and started using nssm."
Log-Success "Komari Agent installation completed!"
Log-Config "Service name: $ServiceName"
Log-Config "Arguments: $argString"
Log-Config "Arguments: $argString"