From 62c1699c5a4139c9db589dd6fc330871b01634a0 Mon Sep 17 00:00:00 2001 From: Phil Warner Date: Tue, 11 May 2010 20:01:47 +0200 Subject: network/xrdp: Added to 12.0 repository --- network/xrdp/doinst.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 network/xrdp/doinst.sh (limited to 'network/xrdp/doinst.sh') 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 + -- cgit v1.2.3