similar to: Virtual defines ?

Displaying 20 results from an estimated 100 matches similar to: "Virtual defines ?"

2009 Dec 13
13
Inherited Client and Server Apps
So, I''ve been doing something like this for applications that have a client and server component... node base_node { include syslog_ng::client }} node app_node inherits base_node { } node syslog_server inherits base_node { include syslog_ng::server } ... because I want the client portion, syslog-ng in this case to be installed on everything. However, the server node also has a
2005 Oct 26
1
Problems with LDAP authentication backend.
Hello. I am attempting to integrate Samba into our LDAP authentication and am running into a few problems. First, here is my current configuration: [global] netbios name = SYSLOGSERVER workgroup=MOTOGROUP security = user encrypt passwords = yes ldap admin dn = cn=Administrator,dc=motogroup,dc=com passdb backend = ldapsam:ldap://10.100.23.102/
2007 Aug 27
1
Re: Problem restarting client service ssh in client (Pedro Simoes)
Ok, the file definition was missing. Now i''ve put that: ## services/ssh.pp class ssh { file { sshd_config: name => "/etc/ssh/sshd_config" } service { ssh: name => $operatingsystem ? { Debian => ssh, default => sshd }, ensure =>
2009 Jul 22
1
Updated patch...
This patch obsoletes the previous, renaming the karg to ssh_pwauth.
2009 Jul 22
1
Changes the ssh karg to ssh_pwauth
This patch obsoletes the previous one with feedback from pmyers at redhat.com.
2009 Jul 13
1
[PATCH node] Adds vlan support to auto-installations for the node. bz#511056
If the vlan kernel argument is provided, then it is used during networking auto-configuration. Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-networking | 56 ++++++++++++++++++++++++++++++++------ scripts/ovirt-early | 7 ++++- 2 files changed, 53 insertions(+), 10 deletions(-) diff --git a/scripts/ovirt-config-networking
2007 Jun 07
3
Provisioning Linksys PAP2T ATA's
Does anyone know how the Linksys PAP2T ATA's can be mass provisioned? Documentation seems to be sketchy, even on the Linksys web site. Thanks, Doug. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070607/3f90695c/attachment.htm
2009 Nov 16
1
Refactored upgrade patch...
This patch includes feedback from apevec to remain backward compatible with the previous karg, ovirt_local_boot.
2009 Nov 16
2
Resend...
Resending the refactored patch: I realized after I emailed it that it referenced the wrong bugzilla.
2009 Nov 16
3
[PATCH] Add support for vendor hooks during ovirt-early start()
Add a kernel parameter, vendor= which takes a path to a script embedded in the image. If this script is executable, we will then source it during ovirt-early start() after command line processing and before mounting of /config. We also call a post hook at the end of ovirt-early start(). Also include a sample vendor script. Signed-off-by: Ryan Harper <ryanh at us.ibm.com> ---
2012 Aug 28
4
using puppet augeas to add entry in /etc/syslog.conf
Hi , I"m trying to add a entry in /etc/syslog.conf using puppet augeas like this " *.warning;mail.none;authpriv.none;cron.none @syslog_host" , seems the way to do this with augeas is : augeas { "syslog_conf": lens => "syslog.lns", incl => "/etc/syslog.conf",
2009 Oct 01
1
Repost of Patch 6/6 for ovirt-node
All other patches from the sequence remain unchanged. Repost of patch 6 based on comments from Joey to follow. Mike
2007 Aug 24
7
Problem restarting client service ssh in client
Hello, I want a simple operation in a puppet node like restarting the ssh service if it was stopped. My site.pp is simple as this: import "services/*" node default { include ssh } The services directory as a ssh.pp : class ssh { service { ssh: ensure => running, subscribe => File["/etc/ssh/sshd_config"] } } I''ve stopped the ssh service in the
2009 Sep 26
10
Adding handling for Multipath storage devices
The following patches introduce support for multipath and cciss devices to the ovirt-node and node-image. Comments are appreciated. These patches assume that the 3 patches (2 node, 1 node-image) from Joey are all incorporated. Mike
2007 May 14
1
dialplan: execute on hangup
hi list, I'm looking for a way to execute commands in my dialplan specifically when a caller has hung up. my curretn dialplan looks like this: exten => s,1,Answer exten => s,n(restart),BackGround(intro) exten => s,n,Read(Enter,4,4) exten => s,n,Voicemail(${Enter},u) exten => s,n,agi(process.php|${Enter}) exten => #,1,Playback(thanks) exten => #,n,Hangup it lets a user
2011 Jul 21
0
[PATCH] add netconsole autoinstall parameter
Signed-off-by: Joey Boggs <jboggs at redhat.com> --- scripts/ovirt-config-logging | 11 +++++++++++ scripts/ovirt-early | 6 +++++- 2 files changed, 16 insertions(+), 1 deletions(-) diff --git a/scripts/ovirt-config-logging b/scripts/ovirt-config-logging index 233df67..e296ac4 100755 --- a/scripts/ovirt-config-logging +++ b/scripts/ovirt-config-logging @@ -174,6 +174,13 @@
2009 Jul 21
0
[PATCH node] Adds a new kernel cmdline argument to toggle SSH password auth.
The new karg is "ssh" and can be set using either 0/1 or true/false to set whether SSH password auth will be enabled or not during an automated install. rhbz#513037 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-config-password | 42 ++++++++++++++++++++++------------------ scripts/ovirt-early | 10 ++++++++- 2 files changed, 32
2009 Jan 20
2
PAP2T provisioning
Anyone have an example XML file for the PAP2T? Cheers, j
2008 Jan 26
5
autoprovision 200+ linksys phones setup
Hi there, We have plans to install an office (not call center) with the following setup: 200 linksys 942 phones (sip + g711) on a LAN a server with a dual port E1 sangoma and a remora card with 4 fxo modules. So far when we want to setup a linksys phone, we need to use the http interface of each phone, disable/enable a lot of things and plug it into the network. this is not the best scenario for
2009 Nov 13
1
[PATCH] Provides an explicit upgrade path for an installed node.
This patch allows the node to be upgraded without destroying any configuration. The new kernel argument, ovirt_upgrade, will boot cause the node to install the upgraded image, then reboot. Resolves: rhbz#527217 Signed-off-by: Darryl L. Pierce <dpierce at redhat.com> --- scripts/ovirt-early | 14 +++++++------- scripts/ovirt-firstboot | 22 +++++++++++++---------