Displaying 20 results from an estimated 22 matches for "config_dir".
Did you mean:
config_ddr
2009 Jul 15
1
[PATCH node] Changes the exit/continue based on context.
...22 ++++++++++++++++++++--
scripts/ovirt-firstboot | 2 +-
2 files changed, 21 insertions(+), 3 deletions(-)
diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup
index ee78254..4010828 100755
--- a/scripts/ovirt-config-setup
+++ b/scripts/ovirt-config-setup
@@ -10,7 +10,6 @@ CONFIG_DIR=/etc/ovirt-config-setup.d
# special options, all others execute the symlinked script in CONFIG_DIR
DEBUG_SHELL="Shell"
-CONTINUE="Continue Stateless Boot"
declare -a OPTIONS
@@ -32,13 +31,32 @@ for cfg in $CONFIG_DIR/*; do
fi
done
OPTIONS[${#OPTIONS[*]}]="$D...
1998 Jul 29
0
Printing on a Window Client from AIX
...# the lp command from standard in, this is a temporary file in the print
# spool directory (as it is if you use the "-c" option to the lp command).
#
# In the backend program definition, The "p02" is the name of the
# configuration file for this "service", found in CONFIG_DIR(defined below).
# In this case, the file /var/samba/print/p02 has:
#
# SERVER=tkt15n3z
# SERVICE=printer02
# USER=print
# PASSWORD=you_dont_think_i_would_actually_tell_you
# TRANSLATE=TRUE
#
# All but the last one are standard smb variables. TRANSLATE is a way I
# have made it so that you...
2009 Jun 16
1
[PATCH node] Adds a log viewer option to o-c-setup. bz#506289
...edhat.com>
---
scripts/ovirt-config-setup | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup
index ee78254..11711e1 100755
--- a/scripts/ovirt-config-setup
+++ b/scripts/ovirt-config-setup
@@ -11,6 +11,8 @@ CONFIG_DIR=/etc/ovirt-config-setup.d
# special options, all others execute the symlinked script in CONFIG_DIR
DEBUG_SHELL="Shell"
CONTINUE="Continue Stateless Boot"
+VIEW_LOG="View ovirt.log"
+OVIRT_LOG=/var/log/ovirt.log
declare -a OPTIONS
@@ -33,6 +35,7 @@ for cfg in $C...
2012 Aug 22
9
make uninstall can delete xen-kernels
Nice time.
# make uninstall
...
rm -rf //boot/*xen*
...
if somebody use "xen" in kernel name (maybe as suffix), so it will be deleted from /boot/ too.
Thanks.
Denis.
2009 Jul 14
0
[PATCH node] Changes the exit prompt based on whether it's firstboot of cmdline.
...m>
---
scripts/ovirt-config-setup | 18 +++++++++++++++++-
1 files changed, 17 insertions(+), 1 deletions(-)
diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup
index ee78254..105f7bc 100755
--- a/scripts/ovirt-config-setup
+++ b/scripts/ovirt-config-setup
@@ -10,7 +10,23 @@ CONFIG_DIR=/etc/ovirt-config-setup.d
# special options, all others execute the symlinked script in CONFIG_DIR
DEBUG_SHELL="Shell"
-CONTINUE="Continue Stateless Boot"
+
+during_firstboot=true
+for tty in $(ps -ef | awk '{ printf $2"::"$6" " '}); do
+ if [[...
2011 Sep 29
6
Variable interpolation in class parameters
Hi,
In class parameters, things like x="x", y="y${x}" don''t always evaluate
right (y="yx"), seems random. I''m using 2.7.1
class test1(
$servicex = "sonar",
$logfoldera = "${homex}/logs",
$logfoldere = "${homey}/logs",
$logfolderh = "${homez}/logs",
$logfolder =
2011 Aug 15
1
Slackware Dovecot recompile with SSL/TLS question
...copy some
config files over the defaults etc, and bring it all back up within a
few minutes instead of a week of tweaking and fixing stuff.
Is there a way to do something like this :
stop dovecot
backup all dovecot conf files
./configure CPPFLAGS=-I/path/to/openssl LDFLAGS=-L/path/to/openssl
--config_dir /etc/dovecot/dovecot.conf
(or something like that..not sure what it actually is)
make
sudo make install
edit conf files to point to SSL certs
start dovecot
IN CASE anything goes wrong, copy old config files back and restart
dovecot to make it go back the way it was (only it's using the new
2...
2007 Jan 25
1
Failing to compile chan_capi
...rt of
chan_capi "Makefile". I think I've been blind as I haven't found the
documentation for WHAT needs to go WHERE in this Makefile...
.PHONY: openpbx
INSTALL_PREFIX=/usr/lib/asterisk
ASTERISK_HEADER_DIR=/usr/src/asterisk-1.4.0/include
MODULES_DIR=/usr/lib/asterisk/modules
CONFIG_DIR=/etc/asterisk
//----------------------------------------------------------------------------------
If anyone has any idea what I'm doing wrong, please help me,
Thanks,
Cosmin Prund
2007 Dec 13
4
access to databases in puppet - best practice?
...backup client and server etc.
And my question is: how to you think I should do it in puppet? You
now - the best possible way of course :)
For now I''m doing something like this:
For dhcp and dns I use dnsmasq. So I''ve got module with template
hosts.erb:
<% require "#{config_dir}/tools/bbox.rb" -%>
<% devs=BBOX::Devices.new "#{global_networks_path}/#{lan_dns_domain}"
-%>
<% devs.get_hosts.each do |host| -%>
<%= host[''ip''] %> <%= host[''name''] %>.<%= lan_dns_domain %> <%= host
['...
2011 Nov 22
7
[PATCH] use ncurses-config to find all curses related libs
...uild succeeds again in SLES11 and
the latest openSuSE development branch.
http://lists.opensuse.org/opensuse-packaging/2011-11/msg00055.html
Signed-off-by: Olaf Hering <olaf@aepfle.de>
diff -r 0b1ac7b3ee4d config/StdGNU.mk
--- a/config/StdGNU.mk
+++ b/config/StdGNU.mk
@@ -67,7 +67,7 @@ XEN_CONFIG_DIR = $(CONFIG_DIR)/xen
XEN_SCRIPT_DIR = $(XEN_CONFIG_DIR)/scripts
SOCKET_LIBS =
-CURSES_LIBS = -lncurses
+CURSES_LIBS = $(shell if ! ncurses5-config --libs 2>/dev/null ; then ncurses-config --libs ; fi)
PTHREAD_LIBS = -lpthread
UTIL_LIBS = -lutil
DLOPEN_LIBS = -ldl
2005 Jul 18
0
why $cdr{'CALLERID'} and $cdr{'DNID'} are empty in perl agi connected with asterisk manager
...e = 'localhost';
my $ast_username = 'test';
my $ast_password = 'test';
my $monitor_dir = '/var/spool/asterisk/monitor';
# Read global RADIUS configuratuin from
extensions.conf
#
# I havte doing that but Asterisk manager interface
can not read global variables
#
my $config_dir = '/usr/local/etc/asterisk';
# Globals
#
my %channels;
my ($rad_serv, $rad_sec, $nas_ip);
# Check if already running
#
if( -e $lock_file ) {
open(PID,$lock_file);
my $pid=<PID>;
close PID;
chomp $pid;
if( !-e "/proc/$pid" ) {
print STDERR "Lock fi...
2012 Dec 14
2
Duplicate declaration for invoking a class
Hi everyone,
Here are the manifest I am using:
In file ''*modules/test/manifest/init.pp*'':
class test (
$test = undef,
) {
notice("Here is the message: ${test}")
}
Now in ''*modules/saas/manifests/client/sudo.pp*'':
class saas::client::sudo {
class { ''test'': }
}
Now in ''*manifests/sites.pp*'':
import
2009 Feb 12
6
Is there a way to globely install software
it there a way to install software so that all users on my system can access it
or am I stuck with installing the same software over and over for each user (huge waste of disk space )
2020 Oct 06
0
Viewing changelog for packages to be updated
...pper-multipath':
device-mapper-multipath-libs.x86_64
device-mapper-multipath.x86_64
kpartx.x86_64
Changelog for version `0.8.3-3.el8' -> `0.8.3-3.el8_2.3'
* Tue Jul 21 2020 Benjamin Marzinski <bmarzins at redhat.com> 0.8.3-3.3
- Add 0022-libmultipath-fix-files-read-from-config_dir.patch
* Fix for bz #1858993. Only read files ending in .conf
- Resolves: bz #1858993
* Fri Jul 17 2020 Benjamin Marzinski <bmarzins at redhat.com> 0.8.3-3.2
- Bump release number for rebuild
- Resolves: bz #1856944
* Wed Jul 15 2020 Benjamin Marzinski <bmarzins at redhat.com> 0.8.3-...
2012 Dec 29
2
question
I just install Dovecot and postfix. When I'm pull dovecot I see in the log
that its checking for mail. if a put a test message locally on the server
I can pull the message down to my cell phone and other computers. But when
I try to a message from gmail or aol it doesn't come in to the server.
it always bounces back to the place were I sent it from
2020 Aug 27
2
Viewing changelog for packages to be updated
On Wed, Aug 26, 2020 at 11:18 PM Simon Matter via CentOS
<centos at centos.org> wrote:
>
> > On Wed, Aug 26, 2020 at 2:54 PM Kenneth Porter <shiva at sewingwitch.com>
> > wrote:
> >>
> >> Is there some way to see the RPM changelog entries for a prospective yum
> >> update? Ideally I'd like to see just the entries that are newer than the
2013 Jan 25
14
[PATCH] tools: revert to using /var and /etc/
26470:acaf29203cf9 "tools+stubdom: install under /usr/local by
default" moved more stuff under /usr/local than was desirable.
In particular SYSCONFIG_DIR (configuration for initscripts) moved to
/usr/local/etc/{sysconfig,defaults} while the initscripts themselves
(correctly) remained in /etc/init.d. Moving /etc/xen/scripts breaks
the udev bakcned rules file. Lastly stuff under /var was moved to
/usr/local/var.
Move these back to /etc/ and /var. Mov...
2008 Mar 21
27
Alexandre says "let the newbies run as root"
I don't agree with him, but there you have it.
---------- Forwarded message ----------
From: Alexandre Julliard <julliard at winehq.org>
Date: Fri, Mar 21, 2008 at 1:32 AM
Subject: Re: loader: more stringent sanity check
To: Dan Kegel <dank at kegel.com>
Cc: wine-devel at winehq.org
"Dan Kegel" <dank at kegel.com> writes:
> Many, many newbies are running
2012 Jul 16
23
[PATCH] x86/EFI: define and use EFI_DIR make variable, defaulting to /usr/lib64/efi
...@aepfle.de>
diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 Config.mk
--- a/Config.mk Mon Jul 09 10:10:27 2012 +0100
+++ b/Config.mk Mon Jul 16 23:37:16 2012 +0000
@@ -48,6 +48,7 @@ SHAREDIR ?= $(PREFIX)/share
DOCDIR ?= $(SHAREDIR)/doc/xen
MANDIR ?= $(SHAREDIR)/man
BASH_COMPLETION_DIR ?= $(CONFIG_DIR)/bash_completion.d
+EFI_DIR ?= /usr/lib64/efi
# arguments: variable, common path part, path to test, if yes, if no
define setvar_dir
diff -r 9950f2dc2ee6 -r dd1ab0cae2c8 docs/misc/efi.markdown
--- a/docs/misc/efi.markdown Mon Jul 09 10:10:27 2012 +0100
+++ b/docs/misc/efi.markdown Mon Jul 1...
2010 Feb 23
1
More complete patch...
This patch supercedes the previous one by moving the functionality for
relocating files into the make system.