Ignore:
Timestamp:
Sep 17, 2009, 2:55:47 AM (15 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
master, debian, mac, no-cups, nodebathena, web
Children:
c631d1a
Parents:
c061ab8
git-author:
Jessica B. Hamrick <jhamrick@…> (09/17/09 02:55:47)
git-committer:
Jessica B. Hamrick <jhamrick@…> (09/17/09 02:55:47)
Message:

Added debconf implementation and clean uninstall, but the actual functionality of sipbmp3 seems to be broken - it will send a zephyr and say it's playing the song, and then say "playback completed sucessfully", but both zephyrs come at the ~same time and there is no sound output.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sipbmp3/debian/inst/edit-lpd.perms

    rc061ab8 r331360d  
    55# allow other users to dequeue music
    66# (comment out REJECT SERVICE=M
     7echo "Editing /etc/lprng/lpd.perms..." >&2
    78if [ -e /etc/lprng/lpd.perms ]; then
    89    mv /etc/lprng/lpd.perms /etc/lprng/lpd.perms.bak
     
    1011
    1112    while read line; do
    12         reject_not_server=$(echo "$line" | grep '^REJECT NOT SERVER')
     13        reject_not_server=$(echo "$line" | grep '^REJECT NOT SERVER' || true)
    1314        if [ -n "$reject_not_server" ]; then
    1415            echo "#$line" >> /etc/lprng/lpd.perms
    1516        else
    16             reject_service=$(echo "$line" | grep '^REJECT SERVICE=M')
     17            reject_service=$(echo "$line" | grep '^REJECT SERVICE=M' || true)
    1718            if [ -n "$reject_service" ]; then
    1819                echo "#line" >> /etc/lprng/lpd.perms
Note: See TracChangeset for help on using the changeset viewer.