9 lines
213 B
Bash
9 lines
213 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
# shortcut for podman runlabel calls
|
||
|
if [ $(basename "$1") = 'label-install' ] || [ $(basename "$1") = 'label-uninstall' ]; then
|
||
|
exec "$@"
|
||
|
fi
|
||
|
|
||
|
exec /usr/sbin/radvd --nodaemon ${RADVD_OPTIONS}
|