]> git.llucax.com Git - software/pymin.git/blob - services/ip/templates/route_add
Add GPL v3 license to the project
[software/pymin.git] / services / ip / templates / route_add
1 %if dev is not None:
2 ip route add dev ${dev} ${net_addr}/${prefix} via ${gateway}
3 %else:
4 ip route add ${net_addr}/${prefix} via ${gateway}
5 %endif