Skip to content
Snippets Groups Projects
Commit 81295daf authored by Bob Mottram's avatar Bob Mottram
Browse files

More ghost busting

parent 619834af
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,10 @@ ghost_variables=(GHOST_DOMAIN_NAME
function ghost_bust {
# kill the started ghost process
kill_pid=$(ps aux | grep "ghost run" | awk -F ' ' '{print $2}' | head -n 1)
kill $kill_pid
kill -9 $kill_pid
kill_pid=$(ps aux | grep "ghost" | awk -F ' ' '{print $2}' | head -n 1)
kill -9 $kill_pid
}
function logging_on_ghost {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment