Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/isatapd/files: isatapd.service.conf isatapd.service-r1
Date: Sun, 30 Mar 2014 10:09:21
Message-Id: 20140330100914.4312320057@flycatcher.gentoo.org
1 pacho 14/03/30 10:09:14
2
3 Added: isatapd.service.conf isatapd.service-r1
4 Log:
5 Fix systemd support (#482690 by Yichao Zhou)
6
7 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
8
9 Revision Changes Path
10 1.1 net-misc/isatapd/files/isatapd.service.conf
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/files/isatapd.service.conf?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/files/isatapd.service.conf?rev=1.1&content-type=text/plain
14
15 Index: isatapd.service.conf
16 ===================================================================
17 [Service]
18 # A space separated list of one or more hostnames/IPv4 addresses to use as
19 # potential routers.
20 # The default is the unqualified hostname 'isatap'
21 Environment="ISATAP_ROUTERS=isatap"
22
23 # Interval in seconds to send router solicitations.
24 # Default (unset): 'auto'
25 Environment="ISATAP_INTERVAL=auto"
26
27 # Interval in seconds to check for DNS changes. Set to 0 to disable.
28 # Default: 3600
29 Environment="ISATAP_CHECK_DNS=3600"
30
31 # Link tunnel to device
32 # Default (unset): automatically find outgoing device
33 Environment="ISATAP_LINK=auto"
34
35 # The name of the ISATAP tunnel device
36 # Default is 'is0' if ISATAP_LINK is unset and 'is_${ISATAP_LINK}' otherwise.
37 Environment="ISATAP_NAME=auto"
38
39 # IPv6 MTU of the created ISATAP tunnel interface. The IPv4 path to
40 # the ISATAP router and all other ISATAP clients should be able to
41 # handle at least MTU+20 bytes.
42 # The minimum IPv6 MTU (1280 Bytes) is the safest choice here
43 Environment="ISATAP_MTU=1280"
44
45 # Additional options, see isatapd(8) for details
46 Environment="DAEMON_OPTS="
47
48
49
50 1.1 net-misc/isatapd/files/isatapd.service-r1
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/files/isatapd.service-r1?rev=1.1&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/isatapd/files/isatapd.service-r1?rev=1.1&content-type=text/plain
54
55 Index: isatapd.service-r1
56 ===================================================================
57 [Unht]
58 Description=ISATAP Client for Linux
59 After=network.target nss-lookup.target
60
61 [Service]
62 ExecStart=/usr/sbin/isatapd ${DAEMON_OPTS} \
63 --interval ${ISATAP_INTERVAL} \
64 --name ${ISATAP_NAME} \
65 --link ${ISATAP_LINK} \
66 --mtu ${ISATAP_MTU} \
67 --check-dns ${ISATAP_CHECK_DNS} \
68 ${ISATAP_ROUTERS}
69
70 [Install]
71 WantedBy=multi-user.target