Displaying 20 results from an estimated 6000 matches similar to: "sysconfdir depreacted"
2003 Dec 12
2
sysconfdir
I compiled samba 3.0.0 with the following configure options:
./configure --prefix=/usr --sysconfdir=/etc/samba --with-privatedir=/etc/
samba/private --with-ldap --with-ads --with-krb5=/usr --with-smbmount
--without-sys-quotas
The problem is that it seems to disregard the sysconfdir param and looks for
the smb.conf file in /usr/lib/. Any help?
Thanks
Justin
2004 Dec 06
1
compiling samba v3x with sysconfdir
Hello,
I just compiled the latest samba src. with the sysconfdir option as seen
below:
./configure --prefix=/usr/local/samba/3.0.9 --sysconfdir=/etc/samba
After installing it and configuring the smb.conf in /etc/samba I ran
testparm.
It failed, cause the smb.conf wasn't found:
...
Load smb config files from /usr/local/samba/3.0.9/lib/smb.conf
params.c:OpenConfFile() - Unable to open
2009 Oct 10
1
@2.0, --sysconfdir incorrectly populated with dovecot/*.conf
to document from #irc,
in 1.2.x, specifying
./configure ... --sysconfdir=/path/to/dir ...
correctly results in dovecot.conf looked for as "/path/to/dir/dovecot.conf".
in 2.0, dovecot incorrectly creates a dovecot dir in the sysconfdir,
and looks for,
/path/to/dir/dovecot/dovecot.conf
2.0's behavior should be made consistent with the correct
implementation in 1.2.x, or
2006 Nov 17
2
CHANGE REQUEST: Move config files out of main $sysconfdir
Currently, dovecot places it's config files in $sysconfdir
In Makefile.am, this is defines as:
confdir = $(sysconfdir)
It would be far more friendly to an already overloaded /etc/ directory,
and easier to locate the files, to follow the now-common convention and
place files in $sysconfdir / dovecot / ... on most systems this would
mean:
/etc/dovecot/
If there is only a dovecot.conf, it
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
2001 Feb 27
0
Bug Report: Not using sysconfdir for version 2 host key
For what it's worth--only minimal time spent trying new version.
Bug: OpenSSH-2.5p1 does not find version 2 host key in directory
specified by sysconfdir in configure.
Env: Redhat Linux 6.2- kernel 2.2.18- Alpha ev5 processor- Compaq
XP1000- egcs-2.91.66
sysconfdir=/etc/openssh
Testing is on single host using ssh2.5p1 to connect to sshd2.5p1.
Symptom:
[root at penguin sbin]# sshd -d
2013 Aug 05
4
[patch/Cygwin]: Simplify host key generation in ssh-host-config script
Hi,
as the subject says, the below patch just simplifies the host
key generation in the Cygwin-specific ssh-host-config script.
Rather than testing and generating each key, call ssh-keygen -A.
Could somebody with checkin rights please apply?
Thanks,
Corinna
Index: contrib/cygwin/ssh-host-config
===================================================================
RCS file:
2014 May 15
1
[patch/cygwin] contrib/cygwin/ssh-host-config
Hi,
would you mind to apply the below patch? It fixes Cygwin's
ssh-host-config script in various ways:
- Remove old code to remove the "sshd/22" entry from /etc/services.
This code fixes a problem which only existed in installations which
are more than 10 years old.
- Handle the StrictMode setting interactively.
- Fix regular expressions looking for white spaces.
- Make the
2000 Jan 18
1
Patch to change installation of ssh_config and sshd_config
The NetBSD packages system "forbids" packages from installing stuff outside
of the package tree (typically "/usr/pkg"). OpenSSH installs ssh*_config
into $sysconfdir by default, which violates that rule. Christos Zoulas
reworked Makefile.in to seperate the install from sysconfdir, and I added
some logic to configure.in to add --with-example-dir.
NetBSD's package would
2004 Aug 20
2
[LLVMdev] Configuration Values
I'm soliciting an opinion on configuration data ..
In writing llvmc, I need to hard code the installation path of LLVM so
that llvmc just knows where to look for the configuration data. This is
a last resort after command line options, env vars, and "standard"
places.
So, somehow I need to get the value of the autoconf variable
@sysconfdir@ into my program. There's a few ways
2017 Apr 04
2
[PATCH v2] builder: Don't hard-code /etc for configuration files.
Use ./configure --sysconfdir setting.
---
builder/paths.ml | 2 +-
mllib/guestfs_config.ml.in | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/builder/paths.ml b/builder/paths.ml
index cbd9d4bd0..d7c4820bf 100644
--- a/builder/paths.ml
+++ b/builder/paths.ml
@@ -35,7 +35,7 @@ let xdg_config_home () =
let xdg_config_dirs () =
let dirs =
try Sys.getenv
2015 Nov 30
2
Compiler-Options
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello,
on the wiki-page
https://wiki.samba.org/index.php/Build_Samba_from_source
there are some configure-Options like "./configure ...
- --with-sysconfdir=/etc/samba/".
If I try to start "./configure --with-sysconfdir=/etc/samba/" I get
the following error-message:
waf: error: no such option: --with-sysconfdir
Is the
2009 Aug 31
5
v2.0 configuration paths
In Dovecot v2.0 I'm splitting dovecot-example.conf to multiple files.
It's probably annoying to have tons of dovecot-*-example.conf files, so
what do you think about:
1. Change default sysconfdir from $prefix/etc to $prefix/etc/dovecot
(that's what most distros do anyway)
2. Install *.conf files to $sysconfdir/example/ without the "-example"
part in any of the config files.
2014 Aug 29
1
[patch/cygwin]: Remove setting extra permissions on system directories
Hi,
please consider the below patch for OpenSSH 6.7. A fix in POSIX ACL
handling in Cygwin turned up this rather old code in the ssh-host-config
script. It opens the permissions for some directories, especially
/var/empty, for the "system" user for no good reason.
This results in sshd refusing to start because the permissions on
/var/empty are too open.
The below patch fixes that by
2015 Sep 29
4
[PATCH v2 1/2] builder: add opensuse images sources
---
builder/Makefile.am | 3 ++-
builder/opensuse.conf.in | 3 +++
builder/opensuse.gpg | 21 +++++++++++++++++++++
configure.ac | 1 +
4 files changed, 27 insertions(+), 1 deletion(-)
create mode 100644 builder/opensuse.conf.in
create mode 100644 builder/opensuse.gpg
diff --git a/builder/Makefile.am b/builder/Makefile.am
index 4bed54c..e8f8dfb 100644
---
2016 May 26
2
samba4 on centos 7 won't promote to dc
Hello everyone
I have successfully deployed samba 4.4.2 on Centos7 as PDC. I had to use
BIND9_DLZ because samba_internal was not working. I have successfully
joined win7 machine to a domain and with RSAT I can add user, GP etc.. This
was all possible but with a more than a few tweaks but I have some
questions. But at this time only one is bugging me crazy.
1. When I configure the makefile of
2014 Mar 13
0
Fwd: Change Prefix or sysconfdir value on Windows
Hi NUT Team,
May I change the default directory with the configuration files on windows
client?
The default installation not work for me.
OS: Windows 2008 R2 Server (x64)
Tested versions:
NUT-Installer-2.6.5-2.msi
NUT-Installer-2.6.5-3.msi
NUT-Installer-2.6.5-4.msi
My problem is on bad interpretation default directory "C:\Program Files
(x86)\NUT\bin\..\etc/nut.conf", Windows do not
1999 Dec 28
1
Patch to detect perl using autoconf
For systems that don't have perl at /usr/bin/perl, fixpaths doesn't run.
I've added a check in configure.in to find where perl is and use it to
run fixpaths. Here's the patch:
--- configure.in.orig Mon Dec 27 23:09:36 1999
+++ configure.in Tue Dec 28 10:16:05 1999
@@ -9,6 +9,7 @@
AC_PROG_RANLIB
AC_PROG_INSTALL
AC_CHECK_PROG(AR, ar, ar)
+AC_CHECK_PROG(PERL, perl, perl)
2002 Jul 05
1
[PATCH]: Fix a bug in contrib/cygwin/ssh-host-config
Hi,
the following patch fixes a wrong path in a chown command. The
additional leading slash collides with accessing SMB shares using
double slashes as in "//server/share" on Windows systems.
Corinna
Index: contrib/cygwin/ssh-host-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v
retrieving revision
2002 Aug 09
1
Can't find recent OpenSSL libcrypto
Markus,
I found your e-mail address in the OpenSSH mailing list. I am having a
pecuilar problem and after hours and hours of researching i am still at a
loss regarding this.
I am trying to install openssh-3.4p1 on a SUN box running Solaris8. I
installed Openssl and Zlib as mentioned by the readme and am specifying
the prefixes right by issuing the following command for configure,
./configure