source: debian/rm/revert_lpd.conf @ 53e9374

debianmacno-cupsnodebathenaweb
Last change on this file since 53e9374 was 53e9374, checked in by Jessica B. Hamrick <jhamrick@…>, 14 years ago

Remove other submodules and move some things around

  • Property mode set to 100755
File size: 349 bytes
Line 
1#!/bin/sh -e
2
3echo "Reverting changes to /etc/lprng/lpd.conf..." >&2
4mv /etc/lprng/lpd.conf /etc/lprng/lpd.conf.bak
5touch /etc/lprng/lpd.conf
6while read line; do
7    lpd_listen_port=$(echo "$line" | grep ^lpd_listen_port=515$ || true)
8    if [ -z "$lpd_listen_port" ]; then
9        echo "$line" >> /etc/lprng/lpd.conf
10    fi
11done < /etc/lprng/lpd.conf.bak
Note: See TracBrowser for help on using the repository browser.