2019-08-26 11:44:51 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-08-26 11:44:53 +00:00
|
|
|
. "${0%/*}/testlib.sh"
|
2019-08-26 11:44:51 +00:00
|
|
|
|
|
|
|
# Initialize and test one node
|
|
|
|
|
|
|
|
$tinc $c1 init foo
|
|
|
|
$tinc $c1 set DeviceType dummy
|
|
|
|
$tinc $c1 set Port 0
|
|
|
|
|
|
|
|
# Test running in the foreground
|
|
|
|
|
|
|
|
(sleep 1; $tinc $c1 stop) &
|
|
|
|
$tinc $c1 start $r1 -D
|
|
|
|
|
|
|
|
# Test running tinc in the background
|
|
|
|
|
|
|
|
$tinc $c1 start $r1
|
|
|
|
sleep 1
|
|
|
|
$tinc $c1 stop
|