Port Cheetah templates to Jinja2
Cheetah is unmaintained since 2010 and it's unlikely to get Python3 support soon. Also, the rest of OpenStack (mostly) standardized on Jinja2. Implements: blueprint jinja-templating-conversion Change-Id: Ia15f00ee96d3c1d55d7c290f20ccc988e4c52e1a
This commit is contained in:
@@ -18,8 +18,8 @@
|
||||
|
||||
# NOVA user connection
|
||||
# Edit the following lines to point to your cert files:
|
||||
cert $certfile
|
||||
key $keyfile
|
||||
cert {{ certfile }}
|
||||
key {{ keyfile }}
|
||||
|
||||
ca cacert.pem
|
||||
|
||||
@@ -27,7 +27,7 @@ client
|
||||
dev tap
|
||||
proto udp
|
||||
|
||||
remote $ip $port
|
||||
remote {{ ip }} {{ port }}
|
||||
resolv-retry infinite
|
||||
nobind
|
||||
|
||||
|
||||
Reference in New Issue
Block a user