#!/bin/bash
set -eu

OK=/opt/stack/boot-stack/init-openstack.ok

if [ -e $OK ] ; then
    exit 0
fi

PATH=/usr/local/bin:$PATH

reset-db

touch $OK
