#!/bin/bash

if [[ $1 == "reload" ]]; then
  if [[ $2 == "elliptics" ]]; then
    sv hup elliptics
    exit 0
  fi
fi
exit 1

