neue funktion: rebuild-index

This commit is contained in:
Michael Grote 2020-04-26 19:01:26 +02:00
parent b78d03eb0a
commit 2484e5db42

View file

@ -34,7 +34,7 @@ do
write-host "Befehl eingeben: " write-host "Befehl eingeben: "
Write-Host " 1 = Check`n 2 = Forget(Standard...)`n 3 = Prune`n 4 = Snapshots anzeigen`n 5 = Befehl absetzen`n 6 = unlock`n 7 = Befehlszeile ausgeben" Write-Host " 1 = Check`n 2 = Forget(Standard...)`n 3 = Prune`n 4 = Snapshots anzeigen`n 5 = Befehl absetzen`n 6 = unlock`n 7 = Befehlszeile ausgeben"
Write-Host " 8 = Restore - komplett`n 9 = Restore - nur bestimmte Daten`n10 = Restore - alles bis auf bestimmte Daten" Write-Host " 8 = Restore - komplett`n 9 = Restore - nur bestimmte Daten`n10 = Restore - alles bis auf bestimmte Daten"
Write-Host "11 = Snapshot löschen`n99 = Beenden" Write-Host "11 = Snapshot löschen`n12 = Rebuild-Index`n99 = Beenden"
write-host "====================================" write-host "===================================="
$aktion = Read-Host $aktion = Read-Host
switch ($aktion) switch ($aktion)
@ -94,6 +94,7 @@ do
$snapshot = read-host $snapshot = read-host
& $pfad -r $repository --password-file $passwordfile forget $snapshot & $pfad -r $repository --password-file $passwordfile forget $snapshot
} }
12 {& $pfad -r $repository --password-file $passwordfile rebuild-index ; break}
default{write-host "`nUngültige Eingabe!"} default{write-host "`nUngültige Eingabe!"}
} }
@ -106,4 +107,3 @@ do
#while($abbrechen -eq "n") #while($abbrechen -eq "n")
#führt die schleife immer wieder aus #führt die schleife immer wieder aus
while (1 -eq 1) while (1 -eq 1)