Sponsored Content
Special Forums IP Networking ddns-rev-domainname being created wrong. Post 302481454 by DGPickett on Friday 17th of December 2010 03:00:06 PM
Old 12-17-2010
Such declarations seem silly, as they never change, but it is good style to declare constants in one section with mnemonic names, and not hard code them elsewhere.

The only thing that gets tricky in DNS is when 2 nets are on one reverse domain, when subnetting not modulo 256. Similarly, sometimes a.b.c.d is defined on the c.d domain server, as there is no b.c.d name server.

I always did it by hand!
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

question about domainname

I'm kindda confused about domainname and /etc/defaultdomain. If I type domainname tesT.com, will this be added to /etc/defaultdomain or do I need to add manually on /etc/defaultdomain as well?...second question, if I type domainname tesT.com...is it case sensitive? Thank you. (1 Reply)
Discussion started by: dookeobih
1 Replies

2. UNIX for Dummies Questions & Answers

ROM Rev upgrade?

hi all, I have a sparc5 with ROM Rev 2.15. Is it possible to upgrade to a higher rev? Thanks in advance. (1 Reply)
Discussion started by: andrec
1 Replies

3. Linux

domainname command

Hey, I've been on this for a while... can somebody explain to me what the domainname command really does. The man pages don't tell enough. And how can i have the domain name set so it will be the same all the time when the OS boots up. (4 Replies)
Discussion started by: byblyk
4 Replies

4. Linux

Ddns

Help! I've got RH7 running DDNS. It works between my machines NS1(DDNS server) and NS2(my back up DDNS server in windows) but when i add a client to the mix i can't type the clients name such as ping linux137 Instead i've gotta type the fully qualified domain name.(or ip) Ping... (0 Replies)
Discussion started by: byblyk
0 Replies

5. UNIX for Dummies Questions & Answers

domainname dnsdomainname....etc ??

is there a variable that controls whether the settings of the domainname and dnsdomainame, nisdomaname and hostname are global or local (as in static).. i keep setting the values for these commands and after a while they disappear. how can I keep one static value that will remain even after I have... (7 Replies)
Discussion started by: moxxx68
7 Replies

6. IP Networking

Ddns

Hi all, I was wondering ( yes it is a noob question :) ), i buy a domain (from domain.com) but i have dynamic public ip address and i was wondering if there is a way to automatically update my dynamic public ip address to my domain with BIND. For example now i have some ip 22.22.22.22... (4 Replies)
Discussion started by: IvanAK
4 Replies

7. Solaris

File created with wrong timestamp

Hi All, We are working on solaris 10. I create a file using touch command and when list the file, it does not shows the right timestamp. ... (4 Replies)
Discussion started by: sandeep_kmehra
4 Replies
SVN::Web::X(3pm)					User Contributed Perl Documentation					  SVN::Web::X(3pm)

NAME
SVN::Web::X - exceptions for SVN::Web SYNOPSIS
use SVN::Web::X; ... SVN::Web::X->throw(error => '(error message %1)', vars => [$var_to_interpolate]); DESCRIPTION
SVN::Web::X implements exceptions for SVN::Web. Derived from Exception::Class, It provides a simple mechanism for throwing exceptions, catching them, and ensuring that friendly, localised error messages are generated and sent to the user's browser. USAGE IN SVN
::Web ACTIONS If an SVN::Web action that you are writing needs to stop processing and raise an error, throw an SVN::Web::X exception. "throw()" takes a hash with two mandatory keys. "error" A string describing the error. This string should be short, and key to a longer internationalised message. This string may contain placeholders; %1, %2, %3, and so on. These will be replaced by the values of the variables passed in the "vars" key. By convention this string should be enclosed in parentheses, "(" and ")". This helps make them stand out in the interface, if localised versions of the error message have not yet been written. "vars" An array reference. The first entry in the array will replace the %1 placeholder in "error", the second entry will replace the %2 placeholder, and so on. If there are no placeholders then pass a reference to an empty array. EXAMPLES
A simple exception, with no placeholders. In the action: sub run { ... if(! frob_repo()) { SVN::Web::X->throw(error => '(frob failed)', vars => []); } ... } In the en.po file for the localised text. msgid "(frob failed)" msgstr "There was a problem trying to frob the repository. This " "probably indicates a permissions problem." An exception with placeholders In the action: sub run { ... # $path is a repo path, $rev is a repo revision my $root = $fs->revision_root($rev); my $kind = $root->check_path($path); if($kind == $SVN::Node::none) { SVN::Web::X->throw(error => '(path %1 does not exist in rev %2)', vars => [$path, $rev]); } } In the en.po file for the localised text. msgid "(path %1 does not exist in rev %2)" msgstr "The path <tt>%1</tt> could not be found in the repository " "at revision %2. This may be a typo in the path or the revision " "number. SVN::Web should never normally generate a link like this. " "If you followed a link from SVN::Web (rather than from an e-mail, "or similar) please report this as a bug." As you can see, the localised text can be much friendlier and more informative to the user than the error message. COPYRIGHT
Copyright 2003-2004 by Chia-liang Kao "<clkao@clkao.org>". Copyright 2005-2007 by Nik Clayton "<nik@FreeBSD.org>". This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-06-11 SVN::Web::X(3pm)
All times are GMT -4. The time now is 04:26 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy