summaryrefslogtreecommitdiff
path: root/sysutils/openstack_init/files/openstack_init.sh
blob: 5ce29ae640ceec5c95c599e26a1e4d3558793e6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

# PROVIDE: openstack_init
# REQUIRE: mountcritlocal
# BEFORE: SERVERS

$_rc_subr_loaded . /etc/rc.subr

name="openstack_init"
start_cmd="openstack_init"

openstack_init()
{
	test "x`hostname`" = "x" && eval $( /usr/pkg/sbin/openstack_init.py )
}

load_rc_config $name
run_rc_command "$1"