diff options
author | Phil Warner <pc_warner@yahoo.com> | 2010-05-11 20:01:47 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 20:01:47 +0200 |
commit | 62c1699c5a4139c9db589dd6fc330871b01634a0 (patch) | |
tree | 30cf798205ba5fc7379ccc8d662dcdc5bc797d7c /network/xrdp/doinst.sh | |
parent | 56672fac5a38faafdc884d8270b1d28bce7a8765 (diff) |
network/xrdp: Added to 12.0 repository
Diffstat (limited to 'network/xrdp/doinst.sh')
-rw-r--r-- | network/xrdp/doinst.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/network/xrdp/doinst.sh b/network/xrdp/doinst.sh new file mode 100644 index 0000000000000..40e18dcacce8e --- /dev/null +++ b/network/xrdp/doinst.sh @@ -0,0 +1,25 @@ +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.xrdp.new: +if [ -e etc/rc.d/rc.xrdp ]; then + cp -a etc/rc.d/rc.xrdp etc/rc.d/rc.xrdp.new.incoming + cat etc/rc.d/rc.xrdp.new > etc/rc.d/rc.xrdp.new.incoming + mv etc/rc.d/rc.xrdp.new.incoming etc/rc.d/rc.xrdp.new +fi + +config etc/rc.d/rc.xrdp.new +config etc/xrdp/rsakeys.ini.new +config etc/xrdp/sesman.ini.new +config etc/xrdp/xrdp.ini.new + |