From 5174849d2c0f87ecb19a78ef00a83bd3ccea2e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Sch=C3=BCtte?= Date: Mon, 19 May 2014 21:39:28 +0200 Subject: [PATCH] fix typo --- manifests/init.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index 29fb934..6a9f051 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -491,7 +491,7 @@ class ff_gw::tinc($tinc_name, $tinc_keyfile = '/etc/tinc/rsa_key.priv', $ic_vpn_ content => template('ff_gw/etc/tinc/icvpn/tinc.conf.erb'); '/etc/tinc/icvpn/tinc-up': ensure => file, - mode => '0755'; + mode => '0755', content => inline_template('#!/bin/sh /sbin/ip link set dev $INTERFACE up /sbin/ip addr add dev $INTERFACE <%= @ic_vpn_ip4 %>/16 broadcast 10.207.255.255 @@ -499,7 +499,7 @@ class ff_gw::tinc($tinc_name, $tinc_keyfile = '/etc/tinc/rsa_key.priv', $ic_vpn_ '); '/etc/tinc/icvpn/tinc-down': ensure => file, - mode => '0755'; + mode => '0755', content => inline_template('#!/bin/sh /sbin/ip addr del dev $INTERFACE <%= @ic_vpn_ip4 %>/16 broadcast 10.207.255.255 /sbin/ip -6 addr del dev $INTERFACE <%= @ic_vpn_ip6 %>/96