docs: document configurable reconnect script path
This commit is contained in:
parent
a39b413746
commit
6fb18cd5fa
@ -17,7 +17,8 @@ SUBST_VARS = sed \
|
|||||||
-e 's|@bindir[@]|$(bindir)|g' \
|
-e 's|@bindir[@]|$(bindir)|g' \
|
||||||
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
||||||
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
||||||
-e 's|@socketdir[@]|$(socketdir)|g'
|
-e 's|@socketdir[@]|$(socketdir)|g' \
|
||||||
|
-e 's|@xrdpconfdir[@]|$(sysconfdir)/xrdp|g'
|
||||||
|
|
||||||
subst_verbose = $(subst_verbose_@AM_V@)
|
subst_verbose = $(subst_verbose_@AM_V@)
|
||||||
subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@)
|
subst_verbose_ = $(subst_verbose_@AM_DEFAULT_V@)
|
||||||
|
@ -62,14 +62,23 @@ specified by \fBUserWindowManager\fR if it exists.
|
|||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fBUserWindowManager\fR=\fIfilename\fR
|
\fBUserWindowManager\fR=\fIfilename\fR
|
||||||
Name of the startup script relative to the user's home directory. If
|
Path of the startup script relative to the user's home directory. If
|
||||||
present and enabled by \fBEnableUserWindowManager\fR, that script is
|
present and enabled by \fBEnableUserWindowManager\fR, that script is
|
||||||
executed instead of \fBDefaultWindowManager\fR.
|
executed instead of \fBDefaultWindowManager\fR.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fBDefaultWindowManager\fR=\fIfilename\fR
|
\fBDefaultWindowManager\fR=\fIfilename\fR
|
||||||
Full path to the default startup script used by xrdp-sesman to start a
|
Full path or relative path of the default startup script used by xrdp-sesman
|
||||||
session if the user script is disabled or missing.
|
to start a session. If the path is not a full path, it will be resolved as
|
||||||
|
relative path to \fI@xrdpconfdir@\fR. If not specified, defaults to
|
||||||
|
\fI@xrdpconfdir@/startwm.sh\fR.
|
||||||
|
|
||||||
|
.TP
|
||||||
|
\fBReconnectScript\fR=\fIfilename\fR
|
||||||
|
Full path or relative path if the script which executed when users reconnects
|
||||||
|
to the existing session. If the path is not a full path, it will be resolved as
|
||||||
|
relative path to \fI@xrdpconfdir@\fR. If not specified, defaults to
|
||||||
|
\fI@xrdpconfdir@/reconnectwm.sh\fR.
|
||||||
|
|
||||||
.SH "LOGGING"
|
.SH "LOGGING"
|
||||||
Following parameters can be used in the \fB[Logging]\fR section.
|
Following parameters can be used in the \fB[Logging]\fR section.
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
|
;; See `man 5 sesman.ini` for details
|
||||||
|
|
||||||
[Globals]
|
[Globals]
|
||||||
ListenAddress=127.0.0.1
|
ListenAddress=127.0.0.1
|
||||||
ListenPort=3350
|
ListenPort=3350
|
||||||
EnableUserWindowManager=true
|
EnableUserWindowManager=true
|
||||||
|
; Give in relative path to user's home directory
|
||||||
UserWindowManager=startwm.sh
|
UserWindowManager=startwm.sh
|
||||||
|
; Give in full path or relative path to @sesmansysconfdir@
|
||||||
DefaultWindowManager=startwm.sh
|
DefaultWindowManager=startwm.sh
|
||||||
|
; Give in full path or relative path to @sesmansysconfdir@
|
||||||
ReconnectScript=reconnectwm.sh
|
ReconnectScript=reconnectwm.sh
|
||||||
|
|
||||||
[Security]
|
[Security]
|
||||||
|
Loading…
Reference in New Issue
Block a user