PowerShell/Scripts/start-calibre-server.ps1

29 lines
848 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-16 16:49:42 +02:00
.SYNOPSIS
start-calibre-server.ps1
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Starts a local Calibre server as a daemon process.
2021-07-16 16:49:42 +02:00
.EXAMPLE
PS> .\start-calibre-server.ps1
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-16 16:49:42 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
$Result = (calibre-server --version)
if ($lastExitCode -ne "0") { throw "Can't execute 'calibre-server' - make sure Calibre is installed and available" }
& calibre-server --port 8099 --num-per-page 100 --userdb $HOME/CalibreUsers.sqlite --log $HOME/CalibreServer.log --daemonize $HOME/'Calibre Library'
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ started Calibre Server in $Elapsed sec"
exit 0
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-07-16 16:49:42 +02:00
exit 1
}