[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [hobbit] EXHOST regular expression syntax
- To: <hobbit (at) hswn.dk>
- Subject: RE: [hobbit] EXHOST regular expression syntax
- From: "Johann Eggers" <Johann.Eggers (at) teleatlas.com>
- Date: Tue, 22 Apr 2008 10:25:09 +0200
- References: <1208852100.5678.59.camel (at) ripley.rhi.hi.is>
- Thread-index: AcikURGRZrL0wPVQT7GVCc4dI6IkMgAAQBkw
- Thread-topic: [hobbit] EXHOST regular expression syntax
> The rule that used to work is like this:
> PROC dsmc EXHOST=%.jotunn.rhi.hi.is
>
> Now, yet another host is also exempt from the rule, so
> I tested the following rules:
> PROC dsmc EXHOST=%.jotunn.rhi.hi.is EXHOST=bestla.rhi.hi.is
> PROC dsmc EXHOST=%.jotunn.rhi.hi.is,bestla.rhi.hi.is
>
> Both rules give unexpected results. So I expect that the rule
> should be written as a single regular expression, but I
> do not know the syntax. Can anybody refer me to a description
> of the syntax.
Hi,
Try using this:
PROC dsmc EXHOST=%(jotunn.rhi.hi.is|bestla.rhi.hi.is)
-Johann