diff options
author | Jérôme Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2016-06-29 20:48:02 +0200 |
---|---|---|
committer | Jérôme Charaoui <jcharaoui@cmaisonneuve.qc.ca> | 2016-06-29 20:55:59 +0200 |
commit | 5fd6c96c4202b27dd3cea335a1bebdf7b7e717ee (patch) | |
tree | f4764a9ba01cd87eceb8789b63cede87a56b8034 | |
parent | 6c0c1f4a1625d44e28fe6c150988be27c2bb4694 (diff) |
Fix missing quote in IPADDRESSES assignment in apticron config
-rw-r--r-- | templates/Debian/apticron.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/Debian/apticron.erb b/templates/Debian/apticron.erb index 655854e..c6d3853 100644 --- a/templates/Debian/apticron.erb +++ b/templates/Debian/apticron.erb @@ -46,7 +46,7 @@ IPADDRESSNUM="<%= v %>" # # IPADDRESSES="192.0.2.1 2001:db8:1:2:3::1" <% unless (v=scope.lookupvar('apt::apticron::ipaddresses')).to_s == "false" -%> -IPADDRESSES=<%= v %>" +IPADDRESSES="<%= v %>" <% end -%> # |