search for: ssldir

Displaying 20 results from an estimated 293 matches for "ssldir".

2000 Mar 23
1
Found a bug in the OpsnSSH configuration script
...Leay was installed, but for OpenSSL, there's a glitch in the way it tries to find the libraries. The following fix works for me: --- configure.in.orig Thu Mar 23 18:56:58 2000 +++ configure.in Thu Mar 23 18:55:05 2000 @@ -152,10 +152,10 @@ AC_MSG_CHECKING([for OpenSSL/SSLeay directory]) for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do if test ! -z "$ssldir" ; then - LIBS="$saved_LIBS -L$ssldir" + LIBS="$saved_LIBS -L$ssldir/lib" CFLAGS="$CFLAGS -I$ssl...
2000 Mar 11
3
TEST RELEASE: openssh-1.2.3pre1
I have just uploaded a test release of 1.2.3. It includes numerous fixes from the OpenBSD team and should fix the stupid configure bugs of 1.2.2p1. http://violet.ibs.com.au/openssh/files/test/ A detailed ChangeLog is in the directory. Please report successes and failures. Regards, Damien Miller -- | "Bombay is 250ms from New York in the new world order" - Alan Cox | Damien Miller -
2000 Jan 18
0
More NetBSD patches
...r/local/cvs/openssh/configure.in,v retrieving revision 1.22 diff -u -r1.22 configure.in --- configure.in 2000/01/17 19:34:14 1.22 +++ configure.in 2000/01/18 15:16:18 @@ -51,6 +51,31 @@ AC_C_INLINE +dnl Check for OpenSSL/SSLeay directories. +AC_MSG_CHECKING([for OpenSSL/SSLeay directory]) +for ssldir in $prefix /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg ; do + if test -f "$ssldir/include/openssl/crypto.h"; then + AC_DEFINE(HAVE_OPENSSL) + GOT_SSL="yes" + break + fi + if test -f "$ssldir/include/ssl/crypto.h"; then +...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...ces/OpenSSH/openssh/configure.in diff -u Services/OpenSSH/openssh/configure.in:1.1.1.4 Services/OpenSSH/openssh/configure.in:1.5 --- Services/OpenSSH/openssh/configure.in:1.1.1.4 Thu Aug 3 14:29:33 2000 +++ Services/OpenSSH/openssh/configure.in Mon Aug 14 19:38:51 2000 @@ -323,19 +326,25 @@ tryssldir="$tryssldir $prefix" fi AC_CACHE_CHECK([for OpenSSL directory], ac_cv_openssldir, [ - - for ssldir in "" $tryssldir /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do - if test ! -z "$ssldir" ; then + for ssl...
2000 Mar 11
1
OpenSSH 1.2.3 Configure
...2.3pre1 Sat Mar 11 03:29:00 2000 --- configure Sat Mar 11 03:15:55 2000 *************** *** 1887,1895 **** fi echo $ac_n "checking for OpenSSL/SSLeay directory""... $ac_c" 1>&6 echo "configure:1890: checking for OpenSSL/SSLeay directory" >&5 ! for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do if test ! -z "$ssldir" ; then ! LIBS="$saved_LIBS -L$ssldir -lcrypto" CFLAGS="$CFLAGS -I$ssldir/i...
2011 Mar 31
5
puppetca and /etc/puppet/ssl
All, I have --confdir=/etc/puppet/common in my /etc/init.d/puppetmaster and /etc/init.d/puppet files, vardir set to /var/lib/puppet in /etc/puppet/common/puppet.conf, and yet, every time I run puppetca it creates /etc/puppet/ssl. Anyone know why? Doug. -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email
2001 Feb 16
7
OpenSSH 2.5.0p1
Known issues: 1) Linux 'sleep 20' -- Unfixable before 2.5.0 (known work around) 2) HP/UX signal issue -- Patched and HP/UX 11 works in v2 3) SCO 2/ Native Compiler -- Unfixable before 2.5.0 (known work around) 4) NeXTStep -- Resynced, MAX_GROUPS vs NGROUPS unresolved (not major) 5) DG/UX regcomp/regexec -- Fixed. 6) Cray signal issues -- ??? 7) Solaris '$PATH' issue -- ??
2004 Oct 21
1
./configure --with-mysql --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-ssldir=/etc/ssl --with-ssl=openssl
Hi, I installed dovecot from dovecot-1.0-test51 with this configure line: ./configure --with-mysql --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-ssldir=/etc/ssl --with-ssl=openssl When I add this to my dovecot.conf: passdb = mysql /etc/dovecot-mysql.conf I get this in /var/log/maillog when I run "dovecot -c /etc/dovecot.conf": Oct 21 13:59:16 one dovecot: Dovecot v1.0-test51 starting up Oct 21 13:59:17 one dovecot: Auth process died t...
2001 Feb 22
11
Lets try this push again.. 2.5.1p2 bugs left.
Things that are still outstanding: 1) Solaris/Redhat/HPUX session.c patch. I've not seen a ya or na on Kevin's pam patch from the Solaris group. 2) Odd Redhat/Debian scp/ssh issues. .. I'm baffled, and I can't replicate the bug. Nor have I seen anything remotely like it reported. 3) SCO.. Is it happy yet for compiling? =) Completed: 1) mdoc2man.pl .. Commited into
2007 Jul 03
7
CA migration
Anyone ever migrated the puppetca to a different host? What are the steps that are involved?
2000 Mar 09
0
Can not configure openssh-1.2.2p1
...same openssl configuration. I needed the following patch to configure.in in order to enable configure to find the -lcrypto library: --- configure.in.orig Sun Mar 5 01:02:46 2000 +++ configure.in Wed Mar 8 22:28:19 2000 @@ -152,10 +152,10 @@ AC_MSG_CHECKING([for OpenSSL/SSLeay directory]) for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do if test ! -z "$ssldir" ; then - LIBS="$saved_LIBS -L$ssldir" + LIBS="$saved_LIBS -L$ssldir/lib" CFLAGS="$CFLAGS -I$ssl...
2013 Nov 06
1
PuppetMaster and Puppet Client in the same machine
...og from remote server: SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed: [self signed certificate in certificate chain for /CN=Puppet CA: HOSTNAME] I was reading about the problem and it seems is related with SSL, I made several tests, i change de ssldir in puppet.conf to [main] ssldir = /etc/puppet/ssl and [agent] ssldir = /var/lib/puppet/ssl , but is not corrected the problem. Anyone seen this? Someone can Help me ? Thanks Marcelo Frota -- You received this message because you are subscribed to the Google Groups "Puppet Users" g...
2013 Oct 30
4
Warning: Local environment: "42A" doesn't match server specified node environment "production", switching agent to "production"
...ion", switching agent to "production". ... The puppet manifest for the environment "42A" isn''t applied. The puppet version is 3.3.1-1puppetlabs1 on agent and puppetmaster node puppet.conf on the agent node : *[main] logdir=/var/log/puppet vardir=/var/lib/puppet ssldir=/var/lib/puppet/ssl rundir=/var/run/puppet factpath=$vardir/lib/facter templatedir=$confdir/templates pluginsync = true [agent] server = puppet report = true* ----------------------------------------------------------- puppet.conf on the puppetmaster node : *[main] logdir=/var/log/puppet vardir...
2002 Mar 15
0
[Bug 168] New: "Could not find working OpenSSL library"
...ot;configure" #include "confdefs.h" #include <string.h> #include <openssl/rand.h> ------------------------------------------------------------------ The problem seems to result from this loop: ------------------------------------------------------------------ for ssldir in $tryssldir "" /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl ; do <snip> # Try to use $ssldir/include if it exists, otherwise # $ssldir if test -d "...
2010 Aug 19
7
External CA: Could not run: Could not retrieve certificate for puppetsrv and not running on a valid certificate authority
...e for puppetsrv and not running on a valid certificate authority" Just wondering what the problem could be? What I did is: 1. generate a self signed CA cert, and save the files to ca.crt, ca.prk, ca.puk, ca.pass. 2. generate a keypair, request, then sign with the above CA and save the files ssldir/public_keys/puppetsrv.pem, ssldir/private_keys/puppetsrv.pem, ssldir/certificate_requests/puppetsrv.pem, ssldir/certs/puppetsrv.pem (All certs work fine with openssl verify) 3. Puppet configuration file: ca = false cakey=$ssldir/ca.prk passfile=$ssldir/ca.pass cacert=$ssldir/ca.crt...
2011 Jan 24
2
Puppet master cannot connect to self
...1 alert decrypt error History: I have had this problem on our old puppet server: puppet.domain.com. It was annoying but not critical. Recently I built a new puppet server (on new hardware) with the new name puppetmaster.domain.com and moved all nodes to that new master successfully by rsyncing $ssldir, and server=puppetmaster.domain.com and certdnsnames=puppetmaster.domain.com:puppetmaster:puppet.domain.com:puppet in puppet.conf. Both puppet.domain.com and puppetmaster.domain.com resolve to the IP of the new server. See <20110118184147.GF730@wiet.xs4all.net> to this list for details. Sudd...
2007 Nov 28
7
puppetrun failing: "connect'': tlsv1 alert unknown ca"
I''m trying to get puppetrun to work, without luck so far. I have my puppetmaster and clients working fine with the clients polling the master. Now I want to be able to force an update. Using version 0.23.2 On the client I set listen=true and created the namespaceauth.conf file. Restarted puppetd and it appears fine. On the master I run puppetrun as root and get root@plane:/etc/puppet#
2017 Aug 25
2
trouble compiling Dovecot 2.2.31 on Solaris 10 SPARC - libssl_iostream_openssl.so is not portable!
...ble!" messaage is generated. If it's done by the configure script, you can look at the test to give you a hint as to why this message was generated. For my setup, I did much the same as you but didn't have to set the SSL_CFLAGS, SSL_LIBS environment variables, nor did I set the --with-ssldir configure option (although your setup may need it). Maybe check output of file /Applications/openssl-1.0.2l.32/lib/libssl.so.1.0.0 just to make sure your library's arhitecture matches your expectation. > # ./configure \ > --prefix=/Applications/dovecot-2.2.31.32 \ > --with-ssl=op...
2007 Oct 09
9
puppetca is unable to sign certificate
Hi - I a ran puppetd -vt against a brand newly build host (which is what I normally do for a new host) and got the usual message: err: No certificate; running with reduced functionality. info: Creating a new certificate request for sega-dev-1. info: Requesting certificate On the puppetmaster, I then list the waiting host with: puppetca --list then sign the key. In this case, I decided that the
2000 Jan 27
0
more NetBSD patches, for OpenSSH V1.2.2
...:21:20 +0100 (MET) From: Hubert Feyrer <feyrer at smaug.fh-regensburg.de> To: feyrer at smaug.fh-regensburg.de $NetBSD: patch-aa,v 1.3 2000/01/27 17:12:03 hubertf Exp $ --- configure.orig Thu Jan 27 04:17:06 2000 +++ configure Thu Jan 27 17:02:44 2000 @@ -1271,7 +1271,7 @@ if test "$ssldir" != "/usr"; then CFLAGS="$CFLAGS -I$ssldir/include" - LDFLAGS="$LDFLAGS -L$ssldir/lib" + LDFLAGS="$LDFLAGS -L$ssldir/lib -R$ssldir/lib" fi echo "$ac_t""$ssldir" 1>&6 @@ -2321,7 +2321,9 @@ cat > conftest.$ac_ext <&l...