9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/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}
|