aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/modules/tinc/templates/tinc-up.epp
blob: 7c89098ff21d5e4dd91fbea606118103f5299948 (plain)
1
2
3
4
5
6
7
8
9
10
11
<%- | $ip,
      $netmask,
      $tinc_other_networks,
| -%>
#!/bin/sh

ifconfig $INTERFACE <%= $ip %> netmask 255.255.255.255

<% $tinc_other_networks.each |$tinc_other_network| { %>
  route add -net <%= $tinc_other_network %> dev $INTERFACE
<% } %>