mirror of
https://github.com/aljazceru/nigiri.git
synced 2026-02-08 16:24:35 +01:00
10 lines
119 B
Bash
Executable File
10 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
function clean {
|
|
kill -9 $(pidof liquidd)
|
|
}
|
|
trap clean SIGINT
|
|
|
|
liquidd -datadir=/config &
|
|
wait $! |