Projects
Kolab:3.4:Updates
cyrus-imapd
cyr_systemd_helper
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File cyr_systemd_helper of Package cyrus-imapd
#!/bin/sh # get_config [config default] # extracts config option from config file get_config() { if conf=$(grep "^$1" /etc/imapd.conf); then echo $conf | cut -d: -f2 else echo $2 fi } CONFIGDIRECTORY=$(get_config configdirectory /var/lib/imap) RETVAL=0 start() { cd $CONFIGDIRECTORY runuser - cyrus -s /bin/sh -c "umask 166 ; /usr/lib/cyrus-imapd/cvt_cyrusdb_all import > ${CONFIGDIRECTORY}/rpm/db_import.log 2>&1" < /dev/null RETVAL=$? } stop() { cd $CONFIGDIRECTORY runuser - cyrus -s /bin/sh -c "umask 166 ; /usr/lib/cyrus-imapd/cvt_cyrusdb_all export > ${CONFIGDIRECTORY}/rpm/db_export.log 2>&1" < /dev/null RETVAL=$? } case "$1" in start) start ;; stop) stop ;; *) ;; esac exit $RETVAL
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.