Displaying 10 results from an estimated 10 matches for "add_host".
2016 Apr 13
1
[Fwd: Re: Samba_dlz, dhcp y zona inversa no actualiza]
...RB5CC"
if [ "$KRB5MIT" = "YES" ]; then
KLISTARG="-s"
else
KLISTARG="-t"
fi
klist $KLISTARG || kinit -k -t "$KEYTAB" -c "$KRB5CC" "$PRINCIPAL" || {
logger -s -p
daemon.error -t dhcpd kinit for dynamic DNS failed; exit 11; }
}
add_host(){
logger -s -p daemon.info -t dhcpd Adding A record for host $HNAME with IP
$IP to zone $ZONE
on server $NAMESERVER
samba-tool dns add $NAMESERVER $ZONE $HNAME A $IP -k yes
}
delete_host(){
logger -s -p daemon.info -t dhcpd Removing A record for host $HNAME with
IP $IP from zone
$ZONE on server $N...
2009 Jun 18
7
Testing if a resource is already defined
Hi gang,
Is it possible to test if a particular resource has already been
defined? I''d like to do something like this:
if !Host["$fqdn"] {
host {"$fqdn": ip => "$ipaddress_eth0" }
}
Essentially, test to see if there is no Host resource defined for the
current server and if not, add a host entry for itself using the IP
address of eth0.
Possible?
2009 Oct 26
0
[PATCH node] Users can now work with remote libvirt hosts.
...10-1301, USA. A copy of the GNU General Public License is
+# also available at http://www.gnu.org/copyleft/gpl.html.
+
+from snack import *
+
+from menuscreen import MenuScreen
+from changehost import ChangeHost
+from addhost import AddHost
+from removehost import RemoveHost
+
+SELECT_HOST = 1
+ADD_HOST = 2
+REMOVE_HOST = 3
+
+class HostMenuScreen(MenuScreen):
+ def __init__(self):
+ MenuScreen.__init__(self, "Host Menu Screen")
+
+ def get_menu_items(self):
+ return (("Select A Host", SELECT_HOST),
+ ("Add A Host", ADD_HOST),...
2009 May 15
0
[PATCH server] final cleanup for service layer refactoring.
...pool.id,
+ :exclude_pool => @pool.id,
:exclude_host => nil,
:checkboxes => true,
:on_select => "load_widget_select",
@@ -20,8 +20,8 @@
:hosts_per_page => 10} %>
</div>
-<%= popup_footer("add_hosts('#{url_for :controller => "hardware",
+<%= popup_footer("add_hosts('#{url_for :controller => "hardware",
:action => "add_hosts",
- :id => @hardware_pool}')&qu...
2009 Dec 03
1
Rebased against next...
This set of patches have been rebased since the originals have grown stale.
2009 Nov 11
1
Combined patch set for migration...
This patch set includes both the host configuration patch and the
node migration patch which depends on it. And the latter has a fix
for missing files.
2009 Oct 28
1
[PATCH] Users can now work with remote libvirt hosts.
...10-1301, USA. A copy of the GNU General Public License is
+# also available at http://www.gnu.org/copyleft/gpl.html.
+
+from snack import *
+
+from menuscreen import MenuScreen
+from changehost import ChangeHost
+from addhost import AddHost
+from removehost import RemoveHost
+
+SELECT_HOST = 1
+ADD_HOST = 2
+REMOVE_HOST = 3
+
+class HostMenuScreen(MenuScreen):
+ def __init__(self):
+ MenuScreen.__init__(self, "Host Menu Screen")
+
+ def get_menu_items(self):
+ return (("Select A Host", SELECT_HOST),
+ ("Add A Host", ADD_HOST),...
2000 Jul 06
1
Notification: PR#9
JitterBug notification
ivo moved PR#9 from incoming to wishlist
Message summary for PR#9
From: vdongen@hetisw.nl
Subject: map
Date: Sun, 2 Jul 2000 18:23:20 0200 (CEST)
0 replies 0 followups
Notes: This is a nice idea on itself, but not really doable in tinc itself.
What would be nice is the ability to control tinc realtime with some sort of GUI
tool. This tool can then be used for much
2009 Dec 08
2
Rebased patches, fixed a rebasing problem...
The previous patch set had an error and one development branch's changes
showed up twice, and two different change sets. So it was missing the bulk
of the configuration work. This patch set fixes that.
2009 May 15
1
[PATCH server] add server-side groundwork for remote freeipa server
...--git a/installer/modules/ovirt/manifests/ovirt.pp b/installer/modules/ovirt/manifests/ovirt.pp
index 03a93a7..2e91e69 100644
--- a/installer/modules/ovirt/manifests/ovirt.pp
+++ b/installer/modules/ovirt/manifests/ovirt.pp
@@ -125,7 +125,7 @@ class ovirt::setup {
}
single_exec { "add_host" :
- command => "/usr/bin/ovirt-add-host $ipa_host /usr/share/ovirt-server/ovirt.keytab",
+ command => "/usr/bin/ovirt-add-host $ovirt_host /usr/share/ovirt-server/ovirt.keytab",
require => Package[ovirt-server],
notify => Service[qpidd]
}
--
1.6.0.6