diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-18 09:51:44 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-11-18 09:51:44 +0100 |
commit | c0eaf7d6cfb67725e48ab8a25ebfc938c960a822 (patch) | |
tree | e3e29a3d2a418942258ed13417814a7a6224f212 /~mtjm/cups-usblp/cups | |
parent | c5e38cfd300af328bf1ac310d45fa799c060fcbe (diff) | |
download | abslibre-c0eaf7d6cfb67725e48ab8a25ebfc938c960a822.tar.gz abslibre-c0eaf7d6cfb67725e48ab8a25ebfc938c960a822.tar.bz2 abslibre-c0eaf7d6cfb67725e48ab8a25ebfc938c960a822.zip |
Remove unused ~mtjm packages.
cups-usblp is not needed for my printer, starting with 1.6.
A debootstrap that can be built using libretools is available in pcr.
I don't use python2-openid nor zbar, while this might be still useful.
I don't use python-urlreader nor python-getmediumurl, lack of fixes
and active maintenance made them much less useful recently.
If you need some of them, add them to pcr.
Diffstat (limited to '~mtjm/cups-usblp/cups')
-rwxr-xr-x | ~mtjm/cups-usblp/cups | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/~mtjm/cups-usblp/cups b/~mtjm/cups-usblp/cups deleted file mode 100755 index 744c8e663..000000000 --- a/~mtjm/cups-usblp/cups +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash - -daemon_name=cupsd - -. /etc/rc.conf -. /etc/rc.d/functions -#. /etc/conf.d/$daemon_name.conf - -get_pid() { - pidof -o %PPID $daemon_name -} - -case "$1" in - start) - stat_busy "Starting $daemon_name daemon" - - PID=$(get_pid) - if [ -z "$PID" ]; then - [ -f /var/run/$daemon_name.pid ] && rm -f /var/run/$daemon_name.pid - # RUN - $daemon_name - # - if [ $? -gt 0 ]; then - stat_fail - exit 1 - else - echo $(get_pid) > /var/run/$daemon_name.pid - add_daemon $daemon_name - stat_done - fi - else - stat_fail - exit 1 - fi - ;; - - stop) - stat_busy "Stopping $daemon_name daemon" - PID=$(get_pid) - # KILL - [ ! -z "$PID" ] && kill $PID &> /dev/null - # - if [ $? -gt 0 ]; then - stat_fail - exit 1 - else - rm -f /var/run/$daemon_name.pid &> /dev/null - rm_daemon $daemon_name - stat_done - fi - ;; - - restart) - $0 stop - sleep 3 - $0 start - ;; - - status) - stat_busy "Checking $daemon_name status"; - ck_status $daemon_name - ;; - - *) - echo "usage: $0 {start|stop|restart|status}" -esac - -exit 0 |