mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-09 15:17:57 +00:00
13 lines
160 B
Bash
Executable File
13 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
##
|
|
# Change owner for docker volume mount
|
|
##
|
|
chown -R frr:frr /etc/frr
|
|
/usr/lib/frr/frrinit.sh start
|
|
|
|
# Sleep forever
|
|
exec tail -f /dev/null
|