#!/usr/bin/sh

set -e

if [ `id -u` -ne 0 ]; then
  echo "Error: $0 must be run as root" 1>&2
  exit 1
fi

systemctl start opensearch.service

