diff options
| author | Luke <luke@lukesmith.xyz> | 2018-01-21 18:29:48 -0700 |
|---|---|---|
| committer | Luke <luke@lukesmith.xyz> | 2018-01-21 18:29:48 -0700 |
| commit | 50adee4e79febf6f74594604e9f7083461b04227 (patch) | |
| tree | 54036701bd0957e51521e7f51d4d3b49450f22da /.config/Scripts/offlineimap-daemonctl.sh | |
| parent | 68bd2acdc8f8040deab188c748d207d93ba923ca (diff) | |
| download | eibhear-50adee4e79febf6f74594604e9f7083461b04227.tar.gz eibhear-50adee4e79febf6f74594604e9f7083461b04227.tar.zst eibhear-50adee4e79febf6f74594604e9f7083461b04227.zip | |
"first" commit, preparing for LARBS 2.0
Diffstat (limited to '.config/Scripts/offlineimap-daemonctl.sh')
| -rwxr-xr-x | .config/Scripts/offlineimap-daemonctl.sh | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/.config/Scripts/offlineimap-daemonctl.sh b/.config/Scripts/offlineimap-daemonctl.sh new file mode 100755 index 0000000..18daf3d --- /dev/null +++ b/.config/Scripts/offlineimap-daemonctl.sh @@ -0,0 +1,40 @@ +#!/bin/sh +# this script runs offline imap as daemon (configured to check periodically) + +LOG=~/.offlineimap/sync.log +PIDFILE=~/.offlineimap/pid + +# if not present on PATH, those vars must point to proper locations +THIS_SCRIPT=offlineimap-daemonctl.sh +PYTHON_DAEMON=offlineimap-daemon.py + +daemon(){ + $PYTHON_DAEMON 2>&1 | + # add timestamps to logs + (while read line; do + echo `date` "$line" >> $LOG + done) +} + +stop(){ + kill -USR2 `cat $PIDFILE` +} + +refresh(){ + kill -USR1 `cat $PIDFILE` +} + +case "$1" in + '--daemon' | '-d' ) + nohup $THIS_SCRIPT < /dev/null > /dev/null 2>&1 & + ;; + '--kill' | '-k' ) + stop + ;; + '--refresh' | '-r' ) + refresh + ;; + * ) + daemon + ;; +esac
\ No newline at end of file |
