Commit b42268b1 authored by Mike Gabriel's avatar Mike Gabriel

Improve 020_add-nxagent-wrapper.full.patch: Properly set NX_TEMP, make sure…

Improve 020_add-nxagent-wrapper.full.patch: Properly set NX_TEMP, make sure nxagent launches even with pam_tmpdir.so being in use.
parent 7b3d592e
nx-libs (2:3.5.0.15-0) UNRELEASED; urgency=low
* Continue development...
* Improve 020_add-nxagent-wrapper.full.patch: Properly set NX_TEMP, make
sure nxagent launches even with pam_tmpdir.so being in use.
* Improve 023_add-x2goagent-wrapper.full.patch: Properly set NX_TEMP, make
sure x2goagent launches even with pam_tmpdir.so being in use.
-- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 28 Jun 2012 14:54:51 +0200
......
--- /dev/null
+++ b/bin/nxagent
@@ -0,0 +1,25 @@
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+# Copyright (C) 2012 Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
......@@ -20,9 +20,14 @@
+
+NX_LIBS=/usr/lib/nx
+NX_LOCAL_LIBS=/usr/local/lib/nx
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+
+# make sure nxagent starts properly with pam_tmpdir.so being in use
+NX_TEMP=${NX_TEMP:-/tmp}
+
+LD_LIBRARY_PATH=$NX_LIBS:$NX_LIBS/X11:$NX_LOCAL_LIBS:$NX_LOCAL_LIBS/X11:$LD_LIBRARY_PATH
+test -d $NX_LIBS && export NX_LIBS || export NX_LIBS=$NX_LOCAL_LIBS
+
+export LD_LIBRARY_PATH
+export NX_TEMP
+
+exec $NX_LIBS/nxagent "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment