diff options
author | Antonio Hernández Blas <hba.nihilismus@gmail.com> | 2011-05-10 11:11:14 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-05-10 11:11:14 -0500 |
commit | b8d4f05bbc0ba1841cd0bcc50da536f66e202d27 (patch) | |
tree | e5d27a13d0f12afa947e26917dbd9eb23f5f52a5 /system/hdapsd/doinst.sh | |
parent | a2ecab12c1ff62b13b456198191d8e315e4e88e3 (diff) | |
download | slackbuilds-b8d4f05bbc0ba1841cd0bcc50da536f66e202d27.tar.gz |
system/hdapsd: Updated for version 20090401.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/hdapsd/doinst.sh')
-rw-r--r-- | system/hdapsd/doinst.sh | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/system/hdapsd/doinst.sh b/system/hdapsd/doinst.sh index bfb1617ab2..fc47654325 100644 --- a/system/hdapsd/doinst.sh +++ b/system/hdapsd/doinst.sh @@ -11,13 +11,18 @@ config() { # Otherwise, we leave the .new copy for the admin to consider... } -# Keep same perms on rc.hdapsd.new: -if [ -e etc/rc.d/rc.hdapsd ]; then - cp -a etc/rc.d/rc.hdapsd etc/rc.d/rc.hdapsd.new.incoming - cat etc/rc.d/rc.hdapsd.new > etc/rc.d/rc.hdapsd.new.incoming - mv etc/rc.d/rc.hdapsd.new.incoming etc/rc.d/rc.hdapsd.new -fi +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} -config /etc/rc.d/rc.hdapsd.new -config /etc/hdapsd.conf.new +preserve_perms etc/rc.d/rc.hdapsd.new +config etc/rc.d/rc.hdapsd.new +config etc/hdapsd.conf.new |