From: Ian Jackson Date: Wed, 20 Jul 2011 19:03:11 +0000 (+0100) Subject: Mobile sites: Support in make-secnet-sites X-Git-Tag: v0.2.0~17 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=040040f336aa9d52c4288e5d2edd08a216dd8a24;ds=sidebyside Mobile sites: Support in make-secnet-sites This allows a sites file to specify that a site is mobile; the mobile flag gets propagated into the generated sites.conf. Includes new support for boolean values. Signed-off-by: Ian Jackson --- diff --git a/make-secnet-sites b/make-secnet-sites index 403782b..4c6f0f4 100755 --- a/make-secnet-sites +++ b/make-secnet-sites @@ -54,6 +54,7 @@ import time import sys import os import getopt +import re # The ipaddr library is installed as part of secnet sys.path.append("/usr/local/share/secnet") @@ -108,6 +109,18 @@ class email: def __str__(self): return '<%s>'%(self.addr) +class boolean: + "A boolean" + def __init__(self,w): + if re.match('[TtYy1]',w[1]): + self.b=True + elif re.match('[FfNn0]',w[1]): + self.b=False + else: + complain("invalid boolean value"); + def __str__(self): + return ['False','True'][self.b] + class num: "A decimal number" def __init__(self,w): @@ -149,6 +162,7 @@ keywords={ 'pubkey':(rsakey,"RSA public site key"), 'peer':(single_ipaddr,"Tunnel peer IP address"), 'address':(address,"External contact address and port"), + 'mobile':(boolean,"Site is mobile"), } def sp(name,value): @@ -253,6 +267,7 @@ class sitelevel(level): 'networks':None, 'peer':None, 'pubkey':(lambda n,v:"key %s;\n"%v), + 'mobile':sp, }) require_properties={ 'dh':"Diffie-Hellman group",