diff options
author | David Somero <dsomero@hotmail.com> | 2010-05-12 17:43:28 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:43:28 +0200 |
commit | 4faba95d6557628c97aca3be2ae49181ee798ff9 (patch) | |
tree | df20d1762d719c10e1bb9721023c78ec455903dc /network/hylafax/doinst.sh | |
parent | 8e73901373ae175d7f613d75f418884902107c75 (diff) | |
download | slackbuilds-4faba95d6557628c97aca3be2ae49181ee798ff9.tar.gz |
network/hylafax: Updated for version 6.0.2
Diffstat (limited to 'network/hylafax/doinst.sh')
-rw-r--r-- | network/hylafax/doinst.sh | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/network/hylafax/doinst.sh b/network/hylafax/doinst.sh new file mode 100644 index 0000000000..33d3c9deca --- /dev/null +++ b/network/hylafax/doinst.sh @@ -0,0 +1,37 @@ +config() { + NEW="$1" + OLD="`dirname $NEW`/`basename $NEW .new`" + + # If there's no config file by that name, mv it over: + if [ ! -r $OLD ]; then + mv $NEW $OLD + elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy + rm $NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +# Keep same perms on rc.hylafax.new: +if [ -e etc/rc.d/rc.hylafax ]; then + cp -a etc/rc.d/rc.hylafax etc/rc.d/rc.hylafax.new.incoming + cat etc/rc.d/rc.hylafax.new > etc/rc.d/rc.hylafax.new.incoming + mv etc/rc.d/rc.hylafax.new.incoming etc/rc.d/rc.hylafax.new +else + # Install executable otherwise - irrelevant unless user starts in rc.local + chmod 0755 etc/rc.d/rc.hylafax.new +fi + +config etc/rc.d/rc.hylafax.new +config var/spool/hylafax/etc/dialrules.new +config var/spool/hylafax/etc/dialrules.europe.new +config var/spool/hylafax/etc/dialrules.sf-ba.new +config var/spool/hylafax/etc/dpsprinter.ps.new +config var/spool/hylafax/etc/hosts.hfaxd.new + +# We warn about needed configuration to the /etc/inittab file. +printf "\nThe following line will need be added to your /etc/inittab: +please check if it is the correct tty device for the modem, +and if not, change it to the correct one. + m0:23:respawn:/usr/libexec/hylafax/faxgetty ttyS0\n\n" +# Hylafax faxgetty activation + |