Displaying 20 results from an estimated 10000 matches similar to: "Conflicting TERM env var with SetEnv feature."
2018 Nov 23
4
Conflicting TERM env var with SetEnv feature.
On 22/11/18 10:09 pm, Philipp Marek wrote:
> if it happens that your local terminal emulation is not available
> on the remote machine(s), what would be the right place to fix it?
Is it a trick question?? Isn't the remote machine the only place that
you can fix ?? Setting TERM on the local machine won't magically make a
Wyse 60 understand VT220 control codes.
Why not wrap ssh
2022 May 21
4
[Bug 3438] New: env var that is SetEnv'ed multiple times in the same SetEnv directive, is sent/printed several times
https://bugzilla.mindrot.org/show_bug.cgi?id=3438
Bug ID: 3438
Summary: env var that is SetEnv'ed multiple times in the same
SetEnv directive, is sent/printed several times
Product: Portable OpenSSH
Version: v9.0p1
Hardware: Other
OS: Linux
Status: NEW
Severity: normal
2009 Apr 21
1
Env var for options/config
Is there any way to define openssh options via an env var?
Something like:
SSH_OPTIONS='-oBatchMode=yes ...'
or
SSH_CONFIG=/path/to/alternate/ssh_config
The reason I'd like to be able to use this is so I can override certain
options without interfering with the users normal configuration file. In
the case of commands that indirectly call ssh, like cvs, there's no way
2006 Jun 20
5
SIP Softphone on Thinclient?
Is anyone doing this or has anyone tried? The thin clients are running
WindowsCE, a browser, and 300mhz. They are Wyse units.
I wonder if anyone has any practical advise or can recommend the best
phone or method to load a stable softphone on one of these boxes?
Thanks,
Steve Totaro
2019 Mar 15
4
prompt to update a host key
On 03/15/2019 12:49 AM, Jeremy Lin wrote:
> [...] connecting to hosts where the host key
> changes frequently. I realize this is a fairly niche use case [...]
Doesn't StrictHostKeyChecking=no do what is wanted?
[Bug 2386] New: TERM env variable is always accepted by sshd, regardless the empty AcceptEnv setting
2015 Apr 17
12
[Bug 2386] New: TERM env variable is always accepted by sshd, regardless the empty AcceptEnv setting
https://bugzilla.mindrot.org/show_bug.cgi?id=2386
Bug ID: 2386
Summary: TERM env variable is always accepted by sshd,
regardless the empty AcceptEnv setting
Product: Portable OpenSSH
Version: 6.8p1
Hardware: Other
OS: Linux
Status: NEW
Severity: enhancement
Priority: P5
2009 Oct 19
3
apache env vars - best practices
I've been setting custom env vars for Apache 1 of 2 ways;
1 - Changing the passwd file so Apache has a shell and loading a
custom .bashrc file.
2 - Using the SetEnv directive in my httpd.conf file.
I'm crazy about neither one as they both have limitations;
1 - I don't like giving Apache its own shell.
2 - The SetEnv directive only takes 2 args so if I have a var with
multiple
2017 Oct 09
5
Why dup()?
Hello all,
My scripts, which read stdout from ssh, weren't seeing EOF from the
remote session.? It was being sent, but lost.? I tracked it down to the
following code, in ssh.c, at ssh_session2_open:
??????? if (stdin_null_flag) {
??????????????? in = open(_PATH_DEVNULL, O_RDONLY);
??????? } else {
??????????????? in = dup(STDIN_FILENO);
??????? }
??????? out = dup(STDOUT_FILENO);
2019 Nov 04
4
scp, sftp, and special characters in filenames
On Mon, 4 Nov 2019 at 14:07, David Newall <openssh at davidnewall.com> wrote:
> [about scp] That's just awful, and I should have
> thought it was not at all necessary. Am I missing something?
>
If you're saying that the scp protocol is an unfixable mess then the
openssh team has been agreeing[0] with you for at least a decade and a
half. We fix what we can, but some
2018 Feb 06
2
add Spectre variant 2 mitigations
On 6 February 2018 at 20:09, David Newall <openssh at davidnewall.com> wrote:
> Do we need to do anything? It's not clear to me how SSH is vulnerable to
> Spectre -- that is, how SSH can be used to execute a Spectre attack?
I am more concerned with it being the target of a Spectre style
attack. There's some long lived private data (host keys in the case
of sshd, session keys
2020 Aug 28
0
Evaluate values in `Sys.setenv`
It is the shell that does the ~ and $ expansions, and Sys.setenv() doesn't go via the shell, so you cannot expect it to understand the shell metacharacters. Instead, you need to do the corresponding computations in R, e.g.
> paste(path.expand("~/mypath"), Sys.getenv("PATH"), sep=":")
[1]
2019 Aug 02
0
[nbdkit PATCH 2/3] sh: Avoid setenv after fork
setenv() is not async-signal-safe and as such should not be used
between fork/exec of a multi-threaded app: if one thread is
manipulating the current environment (which may entail obtaining a
malloc() mutex) when another thread calls fork(), the resulting
child's attempt to use setenv() could deadlock or see a broken environ
because the thread owning the lock no longer exists to release it.
2022 Jan 10
2
[Bug 3379] New: Config parser only allows SetEnv once
https://bugzilla.mindrot.org/show_bug.cgi?id=3379
Bug ID: 3379
Summary: Config parser only allows SetEnv once
Product: Portable OpenSSH
Version: 8.8p1
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P5
Component: ssh
Assignee: unassigned-bugs at mindrot.org
2010 Mar 21
2
Gnulib setenv on Mac OS X bug?
There seems to be a bug in Gnulib's setenv module on Mac OS X. At
configure time it says:
checking whether setenv validates arguments ... no
(The test program it is running is:
| int
| main ()
| {
|
| if (setenv ("", "", 0) != -1) return 1;
| if (errno != EINVAL) return 2;
| if (setenv ("a", "=", 1) != 0) return 3;
| if
2017 Oct 13
4
Why dup()?
On 12/10/17 12:54, Clark Wang wrote:
> How did you hit the problem? "ssh host echo hello | cat" works fine
> for me.
That's because ssh exited, not because of EOF.
Consider the following:
?? ssh localhost 'exec cat > /dev/null' | { read l; echo ${l:-EOF}; }
One should see "EOF" immediately (for values of immediate that include
startup latency), but
2008 Jan 17
2
Setenv missing
When I tried to use the setenv command to set the default text editor for
subversion, I found it was missing how can I install it or enable it in
CentOS 5
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.centos.org/pipermail/centos/attachments/20080117/f78f52e5/attachment-0002.html>
2009 Nov 25
1
[PATCH] daemon/Win32: Replace setenv with Win32 equivalent.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
virt-df lists disk usage of guests without needing to install any
software inside the virtual machine. Supports Linux and Windows.
http://et.redhat.com/~rjones/virt-df/
-------------- next part --------------
>From bbcbfb99656f5de9b8f9e42aa4fba0f733a11b54 Mon Sep 17 00:00:00 2001
From: Richard Jones <rjones at
2020 Aug 28
2
Evaluate values in `Sys.setenv`
Hi all,
I would like to know if there is any way to evaluate the values in
`Sys.setenv` before setting the environment variables. For example, if we
want to add a path to the environment variable `PATH`, we can do this in a
terminal
```
> export PATH=~/mypath:$PATH
> echo $PATH
/Users/jeff/mypath:...
```
However, this style of assignment is not allowed in `Sys.setenv`, it
treats its
2013 Jan 29
0
Setting -sys.setenv()- permanently in Linux using RStudio
> sessionInfo()R version 2.15.2 (2012-10-26)
Platform: i686-pc-linux-gnu (32-bit)
locale:
[1] LC_CTYPE=en_GB.UTF-8 LC_NUMERIC=C
LC_TIME=en_GB.UTF-8
[4] LC_COLLATE=en_GB.UTF-8 LC_MONETARY=en_GB.UTF-8
LC_MESSAGES=en_GB.UTF-8
[7] LC_PAPER=C LC_NAME=C
LC_ADDRESS=C
[10] LC_TELEPHONE=C LC_MEASUREMENT=en_GB.UTF-8
LC_IDENTIFICATION=C
attached base packages:
2005 Sep 30
1
Apache SetEnv and fastcgi
Am I correct to assume that SetEnv does not work with mod_fastcgi on apache
1.3.x?
I''m trying to setup two virtual hosts for the same application, one in
development mode and the other in production. Any other tricks for setting
RAILS_ENV from the webserver?
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org