View | Details | Raw Unified | Return to bug 232231 | Differences between
and this patch

Collapse All | Expand All

(-)b/net/bird/files/bird.in (-1 / +2 lines)
Lines 28-34 extra_commands="reload" Link Here
28
28
29
: ${bird_enable="NO"}
29
: ${bird_enable="NO"}
30
: ${bird_config="%%PREFIX%%/etc/bird.conf"}
30
: ${bird_config="%%PREFIX%%/etc/bird.conf"}
31
: ${bird_group="birdvty"}
31
32
32
command_args="-P /var/run/${name}.pid -c $bird_config"
33
command_args="-P /var/run/${name}.pid -c $bird_config -g $bird_group"
33
34
34
run_rc_command "$1"
35
run_rc_command "$1"
(-)b/net/bird/files/bird6.in (-1 / +2 lines)
Lines 28-34 extra_commands="reload" Link Here
28
28
29
: ${bird6_enable="NO"}
29
: ${bird6_enable="NO"}
30
: ${bird6_config="%%PREFIX%%/etc/bird6.conf"}
30
: ${bird6_config="%%PREFIX%%/etc/bird6.conf"}
31
: ${bird6_group="birdvty"}
31
32
32
command_args="-P /var/run/${name}.pid -c $bird6_config"
33
command_args="-P /var/run/${name}.pid -c $bird6_config -g $bird6_group"
33
34
34
run_rc_command "$1"
35
run_rc_command "$1"
(-)b/net/bird/pkg-install (-1 / +16 lines)
Added Link Here
0
- 
1
#!/bin/sh
2
3
VTY_GROUP=birdvty
4
VTY_GROUP_GID=502
5
6
case $2 in
7
    POST-INSTALL)
8
    echo "===> Creating users and/or groups."
9
    if ! /usr/sbin/pw groupshow ${VTY_GROUP} >/dev/null 2>&1; then
10
	echo "Creating group ${VTY_GROUP} with gid ${VTY_GROUP_GID}."
11
	/usr/sbin/pw groupadd ${VTY_GROUP} -g ${VTY_GROUP_GID};
12
    else
13
	echo "Using existing group ${VTY_GROUP}."
14
    fi
15
    ;;
16
esac

Return to bug 232231