aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_simple_send_string.sh
blob: 018ea55e838560c72ad99014ff4e065ea7fd20ea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
string=$(cat << EOF
M:2
N:1
X:0
T:libgnunet_test_transport_plugin_cmd_simple_send
P:1:1|{connect:{P:1:2:tcp}}
P:1:2|{connect:{P:1:1:tcp}}
EOF
)
if  [ "$(sysctl -n kernel.unprivileged_userns_clone)" == 1 ]; then
    exec unshare -r -nmU bash -c "mount -t tmpfs --make-rshared tmpfs /run/netns; ./test_transport_start_with_config -s '$string'"
else
    echo -e "Error during test setup: The kernel parameter kernel.unprivileged_userns_clone has to be set to 1! One has to execute\n\n sysctl kernel.unprivileged_userns_clone=1\n"
    exit 78
fi