Add daemonization shell script

This commit is contained in:
Jakob Unterwurzacher 2015-10-03 19:15:15 +02:00
parent 79870ab096
commit 0802175328
1 changed files with 14 additions and 0 deletions

14
gocryptfs.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
# Run the gocryptfs process in the background
set -eu
dir=$(dirname "$0")
# This needs user input and cannot run in the background
if [[ $* == *--init* ]]; then
"$dir/gocryptfs" $*
else
"$dir/gocryptfs" $* & disown
fi