rotonda 0.4.0

composable, programmable BGP engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

ROTONDA_HOME="/var/lib/rotonda/"
ROTONDA_USER="rotonda"

create_user() {
    if id ${ROTONDA_USER} > /dev/null 2>&1; then return; fi
    adduser --system --home "${ROTONDA_HOME}" --group ${ROTONDA_USER}
}

case "$1" in
configure)
    create_user
    ;;
esac

#DEBHELPER#