mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 18:24:32 +00:00
8 lines
240 B
Bash
8 lines
240 B
Bash
#!/usr/bin/env bash
|
|
cd /Users/chrisfu/dev/knoe
|
|
rm -f install.pid
|
|
mkdir -p logs
|
|
nohup bash install.sh --silent -c conf/service/knoe.cfg > logs/install_final2.log 2>&1 &
|
|
disown
|
|
echo "Installer launched. Tail: tail -f logs/install_final2.log"
|