From 444ef1aa117728ca870c0671980fd7cdccd67420 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 27 Aug 2024 23:08:41 +0200 Subject: [PATCH] Rename outdated script --- profiles/DerGeret/Windows/Backup.ps1 | 2 +- scripts/Windows/OS/Install.ps1 | 2 +- scripts/Windows/OS/{Manage.ps1 => Legacy.ps1} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/Windows/OS/{Manage.ps1 => Legacy.ps1} (100%) diff --git a/profiles/DerGeret/Windows/Backup.ps1 b/profiles/DerGeret/Windows/Backup.ps1 index 02c374da..2419dca9 100644 --- a/profiles/DerGeret/Windows/Backup.ps1 +++ b/profiles/DerGeret/Windows/Backup.ps1 @@ -1,7 +1,7 @@ #!/bin/pwsh $null = New-Module { . "$PSScriptRoot/../../../scripts/Common/Scripts/Context.ps1"; - . "$PSScriptRoot/../../../scripts/Windows/OS/Manage.ps1"; + . "$PSScriptRoot/../../../scripts/Windows/OS/Legacy.ps1"; Write-Host "Starting Backup of Windows"; $context = [Context]::new(); diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 933d08c5..70225c6f 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -6,7 +6,7 @@ using namespace System.Security.Principal; . "$PSScriptRoot/../../Common/Scripts/Context.ps1"; . "$PSScriptRoot/../Scripts/Security.ps1"; . "$PSScriptRoot/../Software/Firefox/Install.ps1"; -. "$PSScriptRoot/Manage.ps1"; +. "$PSScriptRoot/Legacy.ps1"; . "$PSScriptRoot/User/Install.ps1"; $null = New-Module { diff --git a/scripts/Windows/OS/Manage.ps1 b/scripts/Windows/OS/Legacy.ps1 similarity index 100% rename from scripts/Windows/OS/Manage.ps1 rename to scripts/Windows/OS/Legacy.ps1