9 lines
260 B
PowerShell
9 lines
260 B
PowerShell
# Script to update the debian netinst vmlinuz and initrd files on the netboot server.
|
|
# Technolog Networks, 2025-03-26
|
|
# iRaven
|
|
|
|
$DistroCodename = $args[0]
|
|
|
|
if ([boolean](get-variable "DistroCodename" -ErrorAction SilentlyContinue)) {
|
|
cmd.exe /c "curl -L"
|
|
} |