search for: autmagically

Displaying 3 results from an estimated 3 matches for "autmagically".

Did you mean: automagically
2019 Dec 21
1
tinydns to nsd
...em. I'm looking at NSD now and I think I can use NSD the same way I use tinydns. The only difference is the "one file contains it all" system, but that's rather easy to script. Just rsync the zone files and send a HUP to the supervisor. If a nameserver is not reachable it it will autmagically synchronise. Are there good reasons *not* to use nsd this way? This will not be a 1000000 queries per second system BTW. R. -- richard lucassen http://contact.xaq.nl/
2006 Sep 13
3
Bug#387361: xen-hypervisor-3.0-amd64: Xen3 keeps rebooting on AMD64X2
Package: xen-hypervisor-3.0-amd64 Version: 3.0.2+hg9697-2 Severity: normal Hi DDs, I tried to install the binaries for Xen3, AMD64 flavour on Etch. Everything seemed ok - even the menu.lst got updated nicely and autmagically. Still, after a reboot into the Xen Dom0, the machine just reboots again and again. I added 'noreboot' and made a screenshot named 'xenboot.jpg', which you can find on http://wolfgang.lonien.de/debian/ Another screenshot there called 'xenpackets.png' showed everything I...
2006 Jan 11
7
Create a relationship with 2 or more tables on 1 insert
userstable: |id|name|password| userdetailstable: |id|col1|col2|col3|user_id| this is my code: [code] def create @user = User.new(@params[''user'']) @userdetail = Userdetail.new(@params[''userdetail'']) if @user.save and @userdetail.save flash[:notice] = "Save succeeded..." redirect_to :action => ''list''