search for: ifh

Displaying 14 results from an estimated 14 matches for "ifh".

Did you mean: if
2005 Mar 31
2
[Bug 1008] GSSAPI authentication failes with Round Robin DNS hosts
...Product: Portable OpenSSH Version: -current Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Kerberos support AssignedTo: openssh-bugs at mindrot.org ReportedBy: ahaupt at ifh.de When connecting to hosts that are accessed via Round Robin DNS (e.g pub.<my.domain> resolves to the ip addresses of pub[1-5].<my.domain>) GSSAPI authentication failes often. That's because the server's address lookup is done twice. First when actually connecting to the ser...
2010 Sep 29
0
err: Could not run Puppet configuration client: Could not find a default provider for augeas
...puppet] debug: /File[/var/lib/puppet/ssl/private]: Autorequiring File[/var/lib/ puppet/ssl] debug: /File[/var/lib/puppet/clientbucket]: Autorequiring File[/var/ lib/puppet] debug: /File[/var/lib/puppet/facts]: Autorequiring File[/var/lib/ puppet] debug: /File[/var/lib/puppet/ssl/private_keys/phobos.ifh.de.pem]: Autorequiring File[/var/lib/puppet/ssl/private_keys] debug: /File[/var/lib/puppet/lib]: Autorequiring File[/var/lib/puppet] debug: /File[/etc/puppet/puppet.conf]: Autorequiring File[/etc/puppet] debug: /File[/var/lib/puppet/client_data]: Autorequiring File[/var/lib/ puppet] debug: /File[/v...
2011 Aug 24
1
[PATCH] febootstrap-supermin-helper: Replace objcopy call for embedding init binary
...esult in an object file equivalent to that of +# +# objcopy -I binary -B $(DEFAULT_ARCH) -O $(ELF_DEFAULT_ARCH) <in> <out> + +use strict; +use warnings; + +die "usage: $0 <in> <out>\n" if @ARGV != 2; + +my ($infile, $outfile) = @ARGV; +my ($buf, $i, $sz); +open my $ifh, '<', $infile or die "open $infile: $!"; +open my $ofh, '>', $outfile or die "open $outfile: $!"; + +print $ofh <<"EOF"; +/* This file has been automatically generated from $infile by $0 */ + +\t.globl\t_binary_${infile}_start +\t.globl\t_bi...
2017 Aug 23
0
[PATCH v2 supermin 1/1] Switch binary embedding to a C source
...-\t.section .note.GNU-stack,"",%progbits -\t.previous - -\t.globl\t_binary_${infile_basename}_start -\t.globl\t_binary_${infile_basename}_end - -\t.section\t.rodata -_binary_${infile_basename}_start: +static const char _binary_${infile_basename}[] = { EOF $sz = 0; while ( $i = read $ifh, $buf, 12 ) { - print $ofh "\t.byte\t" - . join( ',', map { sprintf '0x%02x', ord $_ } split //, $buf ) . "\n"; + print $ofh " " + . join( ", ", map { sprintf '0x%02x', ord $_ } split //, $buf ) . ",\n";...
2017 Aug 23
2
[PATCH v2 supermin 0/1] Fix embedding of init
Hi, this patch replaces the first simpler version: https://www.redhat.com/archives/libguestfs/2017-August/msg00117.html The approach now is to use a C snippet, which should pose way less compatibility issues. Thanks, Pino Toscano (1): Switch binary embedding to a C source .gitignore | 2 +- src/Makefile.am | 18 +++++++++--------- src/{bin2s.pl => bin2c.pl} |
2003 Apr 08
0
Some problems with Heimdal and AFS
...nction `_IOW' sshconnect1.c:799: parse error before `struct' It will be happy if this is fixed in one of the following versions. The last thing: in version 3.6.1 I have to add radix.o manually in the Makefile to SSHOBJS and SSHDOBJS. Greetings -- Andreas Haupt E-Mail: ahaupt at ifh.de DESY Zeuthen Platanenallee 6 15738 Zeuthen _______________________________________________ openssh-unix-dev mailing list openssh-unix-dev at mindrot.org http://www.mindrot.org/mailman/listinfo/openssh-unix-dev
1998 Dec 08
0
Samba, ACL and read only flag
...h Solaris ACLs) and mentioned a fast fix. So my question is whether this has been fixed, and if yes, whether a 1.9.18x version of Samba deals nicely with it? (We wouldn't like to switch to 2.0 beta, due to our production environment). Thanks, Axel. -- Axel.Thimm@physik.fu-berlin.de Axel.Thimm@ifh.de
1998 Dec 08
1
WinNT Profiles on samba server?
...tation for clear-text passwords]. Is this a general problem of WinNT-samba? Has any newer samba (perhaps 2.0) fixed this behaviour? I'd like to stick with plaintext passwords, yet still move the profiles to the Unix home directories. Thanks, Axel. -- Axel.Thimm@physik.fu-berlin.de Axel.Thimm@ifh.de
1998 Dec 16
0
NT 4.0SP4 and profile roaming
...al master = Yes domain master = No domain logons = Yes [netlogon] path = /etc/netlogon Could it be that there is another WINS server lurking in my net? How do I find out whether this is so, and could this be the cause of trouble? Thanks, Axel. -- Axel.Thimm@physik.fu-berlin.de Axel.Thimm@ifh.de
2017 Dec 04
1
problem with cloud-init-0.7.9-9.el7.centos.2.x86_64 setting up puppet.conf
...functor(*args) File "/usr/lib/python2.7/site-packages/cloudinit/config/cc_puppet.py", line 107, in handle contents = util.load_file(PUPPET_CONF_PATH) File "/usr/lib/python2.7/site-packages/cloudinit/util.py", line 1278, in load_file with open(fname, 'rb') as ifh: IOError: [Errno 2] No such file or directory: '/etc/puppet/puppet.conf ------------------------ To get around this error with the missing /etc/puppet/puppet.conf I created a directory and link for the .conf since the original location is in /etc/puppetlabs/puppet/puppet.conf [root at kent-h...
2016 Feb 17
8
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
v1 -> v2: - If we split out the init program into a separate init/ directory, that makes it much easier to build against an alternate libc. I tried to build against uClibc, but uClibc requires an entire build chain, which looked like it was going to be a massive ballache. Rich.
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...esult in an object file equivalent to that of -# -# objcopy -I binary -B $(DEFAULT_ARCH) -O $(ELF_DEFAULT_ARCH) <in> <out> - -use strict; -use warnings; - -die "usage: $0 <in> <out>\n" if @ARGV != 2; - -my ($infile, $outfile) = @ARGV; -my ($buf, $i, $sz); -open my $ifh, '<', $infile or die "open $infile: $!"; -open my $ofh, '>', $outfile or die "open $outfile: $!"; - -print $ofh <<"EOF"; -/* This file has been automatically generated from $infile by $0 */ - -\t.globl\t_binary_${infile}_start -\t.globl\t_bi...
2010 Jul 18
6
CRAN (and crantastic) updates this week
...ns is an usefull tool to handle geometric problems. This package allows to handle quaternions with R nearly as simple as real or complex numbers. * R4dfp (0.1-9) Kevin P. Barry http://crantastic.org/packages/R4dfp This package provides an R interface with 2-part 4dfp MRI images (.4dfp.ifh and .4dfp.img files.) * raster (1.2-6) Robert J. Hijmans http://crantastic.org/packages/raster Package for reading, writing, and manipulating raster (grid) type geographic (spatial) data * RcmdrPlugin.doex (0.1.0) Erin Hodgess http://crantastic.org/packages/RcmdrPlugin-doex This p...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...vz0^S6q0Qp}){s3-02|U1vFHx^wq3;8_oq|jPtOa}l zX!bSo1avyh*u8-N0?Y;c;SA&&U_W5ZH;@~EU!MgpfJ(qRz`S#e9Rrkoi!pW{@(92$ zpzPlvuZtLOP<;OZcoY-F-zABCAY)cgBzBc5u^Tms-3={sCt#{BvEzWN4T;SMM12xl z256Nnu^oVEITCxjk;E1 at me_<Q68kAsr%wUP^CWgxzQoqiN=t#nLV&BAN$g9&2hAmR zrUml2LSp<%iQNil(o$l-xk_Sx1dIfH2iSSF#3HRERs;COHAsK0#C`@C54alkk$j!R zS^{1M%mjq4$9rpuB>;aZl2{es(KaxxiY0afpmAG?nSgfze{LtSK>)2icmfo6kk~H) zD*?v<*W4hnHvmmdiS+>lJ4)<VH%e?jpjl_|eiL}OSz@;U-T^%EBZ-{{sJBY2J3zS& zX#ll=!0i(IE8x~UKm+iXJ5f(Rme`YkBY^RDOKdwp{)xn10K5&@1i0s?5?cgle~-kz z0?dKd*y3J^eGNEpAFP1;QAdE|KSS9b08PMHz~B9...