Displaying 20 results from an estimated 300 matches similar to: "Bugtrag 16369"
2024 Jul 22
1
scattered thoughts on connection sharing
I'm not entitled to a response, but I'm surely entitled to send a reminder, no?
Or are you saying that even sending a reminder is itself a gross breach of etiquette?
-----Original Message-----
From: Damien Miller <djm at mindrot.org>
Sent: Monday, July 22, 2024 6:57 PM
To: Yagnatinsky, Mark : IT (NYK) <mark.yagnatinsky at barclays.com>
Cc: openssh-unix-dev at mindrot.org
2024 Jul 18
2
[OT] Re: scattered thoughts on connection sharing
[sorry off-topic, ignore if uninterested in dmarc/dkim/mail filters]
On 2024/07/17 22:14, mark.yagnatinsky at barclays.com wrote:
> I don't know enough about DMARC to make any sense of what you just said... actually wait, maybe I get it.
> You're saying that email sent that I send to the list will land in your inbox with my address in the From header.
> But the recipient mail
2024 Jul 17
1
scattered thoughts on connection sharing
I don't know enough about DMARC to make any sense of what you just said... actually wait, maybe I get it.
You're saying that email sent that I send to the list will land in your inbox with my address in the From header.
But the recipient mail system will think to itself
"this message couldn't possibly have come from Mark, because a cursory inspection of the routing history clearly
2024 Jul 23
0
possible command line parsing bug on Cygwin
It appears that my attempts to "chase" emails on this list are not being taken to kindly.
(The most recent response actually really stung.)
So: I plan to not chase this thread.
This is not easy for me because I like "closure", but oh well.
I noticed a bug that is not inconveniencing me at all.
In fact, it's saving me a few characters of typing.
I consider it my duty as a
2007 Oct 08
2
Noop functionality
I''m thinking about how to set up the processes for Production puppet
runs now. Being ultra-conservative here, we''d like to see what would
happen before pressing the red button.
I can run in noop mode, and everything is evaluated but nothing is done.
A YAML report magically appears on the Puppetmaster which my script
parses and spits out something the management can read
2024 Jul 22
1
scattered thoughts on connection sharing
I promised to be more patient and I think I'm doing better this time :)
But I think I've waited long enough to be entitled to send a reminder now ;)
So: does anyone know if -O proxy is documented anywhere official?
Once I knew what to look for, I found the release notes for the version it was added, but I'd have never found that if I didn't already know the option name.
In order
2024 Jul 16
1
scattered thoughts on connection sharing
Not sure what the standard etiquette around these parts is for how long to wait for a reply but I thought it might be faster than this...
Or did I breach etiquette in my original email?
If so, I'd appreciate someone explicitly telling me "your email was bad and you should feel bad"
I cope poorly with radio silence.
Thanks in advance for any reply at all,
Mark.
-----Original
2007 Aug 20
1
Common routines for custom functions
Hello
I want to share some common subroutines between my custom functions.
Given the way Puppet loads the .rb files in
$plugindest/puppet/parser/functions, does anyone know how should I lay
this out?
I tried creating a
module myutilities
def self.blah()
...
end
end
(NOT within the newfunction() call) in one of the (top-level) functions''
.rb file.
However, calling
2007 Jun 11
1
Arbitrary backups
Anyone think it would be useful to have files backed up to the
filebucket even if they are not controlled by Puppet?
1 vote here.
Derek
------------------------------------------------------------------------
For important statutory and regulatory disclosures and more information about Barclays Capital, please visit our web site at http://www.barcap.com.
Internet communications are not secure
2007 Aug 30
4
Command line vs config file override for configuration params
Hi all
I''m working on my modular recursive Makefile & svn-backed home for my
Puppet manifests, custom functions, types, etc. So I''m trying to put
together individual modules, test targets and so on.
I have noticed that the $libdir (and probably the other configuration
options too) sources from puppet.conf are not overridden by specifying
--libdir=blah on the commmand line
2007 May 11
3
Exception handling in custom facts
Hi.
I''d like to use exception handling in my custom facts. For example, in
plain Ruby:
begin
buildno = ''''
bcrelease = open("/etc/BCrelease")
while (line = bcrelease.gets)
line = line.chomp
buildno = $1 if line =~ /^Build:\s+(\d+)/
end
bcrelease.close
print "#{buildno}\n"
rescue
print "No
2024 Jul 17
2
scattered thoughts on connection sharing
Thanks for replying! And noted, re: patience... will do.
Passing -O proxy works!! This great! I feared I'd have to write an SSH client or something.
You have improved my mood by at least 300%.
I can't find this option documented ANYWHERE. Is it documented?
Re: socket paths: thanks for the sample, I guess I'll use the .ssh dir too :)
Re: thing 5: you're right it DOES do it
2007 Dec 10
1
One more HEAD foible against our config
One more error/warning from the latest Puppet from git:
In the provider I have
KEYS = Facter.value(:roothome) + "/.ssh/authorized_keys"
Puppet::Type.type(:authorizedkey).provide(:parsed,
...
I get an error on the Puppetmaster:
Could not autoload
"/usr/lib/ruby/site_ruby/1.8/puppet/provider/authorizedkey/parsed.rb":
undefined method `+'' for nil:NilClass
Could not
2007 Nov 19
1
Targets firing out of order
> Example class that brings on this behaviour:
>
> Class ldap::setup {
> $loc = getLocation() #Custom function that returns a location
> based on IP address fact
>
> case $loc {
> london: {
> $bind = "cn=base,dc=site,dc=com"
> notice ("Target 1 - bind - ${bind}")
> }
> ...
>
2007 Nov 29
2
Overriding resources in a define in a module - can''t get syntax right
Maybe it works, maybe it doesn''t, but I sure as hell can''t make it work.
I get stuck with
"Could not find object(s)" whatever I do
This is my module init.pp
class ztest::setup {
notice "MAIN SETUP CLASS"
file { directfile:
path => "/etc/directfile",
owner => root, group => root, mode => 0644,
content
2007 Dec 18
2
Testing / Coding methodologies?
I''ve been having great "fun" testing the new (Puppetised) build
end-to-end for several days now. The majority of the fun has been
coming from vendor packages (no names mentioned), typically with
conflicting permissions on files, or perhaps different home directories,
UIDs for the app users so it matters in which order you do things in.
My current methodology is to go through
2007 Nov 13
2
Creating a manifests ''release'' under SVN; trouble with SVN headers
Dear all
I''ve gotten into the habit of including SVN headers in my templates, etc
so it is easy to see where the file installed into /etc/puppet/ came
from. Furthermore, we use svn cp to create release branches.
Therefore, you''ll see something like this:
# $Id: dumpadm.conf 1239 2007-10-23 16:04:06Z sa_dewha $
# $URL:
2007 Jun 11
4
Managing bigger scripts
Hello,
I''m scratching my head as to the best way to plug in a script to do some
client configuration. The script is about 40 lines long (full of basic
instructions to fiddle with VCS in fact).
Lots of execs would seems cumbersome. My thoughts are to simply install
this to the client (via the fileserver) and exec out to it.
Does this seem sensible? And if so, be aware of things like
2004 Dec 09
1
Chainloading from pxelinux
Can pxelinux be used to chain other *network* bootloaders directly?
I.e., keep the pxe stack but replace itself with an alternate network
boot loader (eg, the intel nbp, or, more specificly, an arbitrary
bootloader for another OS)?
I'm sure this is an obvious FAQ but I can't find reference to it
(sorry).
Obviously memdisk could be used to load other OSes, but I have been
given a strict
2024 Jul 15
2
scattered thoughts on connection sharing
Resending, got blocked last time.
I have a few things I'd like to say about the (seriously nifty) connection sharing feature of OpenSSH and I'm not sure if the convention here is to use one email thread per distinct thing or just stuff everything into one email.
I decided to combine them because splitting is much easier than combining.
Thing 1: This is the main thing that motivated me to