make getpeername() return the original socket address which before it was intercepted
[hband-tools.git] / user-tools / set-sys-path
blob3264136d6572fc034d64e6444b8adc86eb5667a8
1 #!/bin/bash
3 true <<EOF
4 =pod
6 =head1 NAME
8 set-sys-path - Set PATH according to /etc/environment and run the given command
10 =cut
12 EOF
15 set -e
17 export PATH=`/usr/sbin/pam_getenv PATH`
18 exec "$@"