Don’t run script if it’s running

The script will start only in case if the same script is not running.

#!/bin/bash
if ps -ef | grep -v grep | grep "process name" ; then
    echo "process running"
    exit 0
else
    echo "process not running"
    exit 0
fi