mirror of https://github.com/neutrinolabs/xrdp
added post install hook
This commit is contained in:
parent
a7b624056f
commit
f1ebdf189e
|
@ -6,3 +6,10 @@ startscriptdir=$(sysconfdir)/xrdp
|
|||
|
||||
startscript_DATA = \
|
||||
xrdp.sh
|
||||
|
||||
# must be tab below
|
||||
install-data-hook:
|
||||
chmod 755 $(DESTDIR)$(sysconfdir)/xrdp/xrdp.sh
|
||||
if [ -w /etc/init.d ]; then rm -f /etc/init.d/xrdp.sh; fi
|
||||
if [ -w /etc/init.d ]; then $(LN_S) $(DESTDIR)$(sysconfdir)/xrdp/xrdp.sh /etc/init.d/xrdp.sh; fi
|
||||
$(DESTDIR)$(bindir)/xrdp-keygen xrdp $(DESTDIR)$(sysconfdir)/xrdp/rsakeys.ini
|
||||
|
|
|
@ -58,3 +58,7 @@ sesmansysconf_DATA = \
|
|||
SUBDIRS = \
|
||||
libscp \
|
||||
tools
|
||||
|
||||
# must be tab below
|
||||
install-data-hook:
|
||||
chmod 755 $(DESTDIR)$(sysconfdir)/xrdp/startwm.sh
|
||||
|
|
|
@ -36,3 +36,7 @@ pkgdata_DATA = \
|
|||
sans-10.fv1 \
|
||||
cursor0.cur \
|
||||
cursor1.cur
|
||||
|
||||
# must be tab below
|
||||
install-data-hook:
|
||||
chmod 600 $(DESTDIR)$(sysconfdir)/xrdp/rsakeys.ini
|
||||
|
|
Loading…
Reference in New Issue