diff options
author | Phillip Warner <pc_warner@yahoo.com> | 2010-05-13 01:01:18 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 01:01:18 +0200 |
commit | 7603037553aaeb9858ddf2dc7ad4e04c51535afc (patch) | |
tree | 06d565afe65078a673b28fa85a53aad1985401be /system/xrdp/doinst.sh | |
parent | f8148f4768f5990ca80661402f3ec28c059a90c0 (diff) | |
download | slackbuilds-7603037553aaeb9858ddf2dc7ad4e04c51535afc.tar.gz |
system/xrdp: Added to 13.0 repository
Diffstat (limited to 'system/xrdp/doinst.sh')
-rw-r--r-- | system/xrdp/doinst.sh | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/system/xrdp/doinst.sh b/system/xrdp/doinst.sh new file mode 100644 index 0000000000..19d3ab6ba6 --- /dev/null +++ b/system/xrdp/doinst.sh @@ -0,0 +1,26 @@ +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/xrdp-xinitrc.new +config etc/xrdp/rsakeys.ini.new +config etc/xrdp/sesman.ini.new +config etc/xrdp/xrdp.ini.new + |