blob: d84817a85bf736cc6f5f4eb04c705f08d0a2ff40 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
: ${NITRO_SOCK:=/run/user/$(id -u)/nitro/nitro.sock}
if [ ! -S "$NITRO_SOCK" ]; then
echo "unitroctl: couldn't find socket $NITRO_SOCK" >&2
exit 1
fi
export NITRO_SOCK
exec nitroctl "$@"
|