#!/bin/sh
set -e

. debian/tests/utils

# should have been started on install, but policy may have inhibited that
service frr status >/dev/null || service frr restart

wait_for_service

# these should be running by default
pgrep watchfrr
pgrep zebra
pgrep staticd

# check vtysh works at all
vtysh -c 'show version'

# check zebra is properly talking to the kernel
vtysh -c 'show interface lo' | grep -q LOOPBACK
