mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
7 lines
111 B
Bash
Executable File
7 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
if wget --spider -S "127.0.0.1:8080/login" 2>&1 | grep -w "200" ; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|