diff options
| author | Luke <luke@lukesmith.xyz> | 2018-02-20 14:29:53 -0700 |
|---|---|---|
| committer | Luke <luke@lukesmith.xyz> | 2018-02-20 14:29:53 -0700 |
| commit | 838eeec9acdc320bbab24b69db3041e436cdc996 (patch) | |
| tree | e220c4843b25626a9733ee39cb45fcf1dadc1394 /.config/Scripts/offlineimap-daemonctl.sh | |
| parent | f1366ff22b4f6f97b27edecda9ecf434c38ae426 (diff) | |
| download | eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.gz eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.tar.zst eibhear-838eeec9acdc320bbab24b69db3041e436cdc996.zip | |
scripts folder moved to ~/.scripts
Diffstat (limited to '.config/Scripts/offlineimap-daemonctl.sh')
| -rwxr-xr-x | .config/Scripts/offlineimap-daemonctl.sh | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/.config/Scripts/offlineimap-daemonctl.sh b/.config/Scripts/offlineimap-daemonctl.sh deleted file mode 100755 index 18daf3d..0000000 --- a/.config/Scripts/offlineimap-daemonctl.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/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 |
