#!/usr/bin/env python3

import os
import sys

from os2borgerpc.client.jobmanager import update_and_run

if not os.geteuid() == 0:
    sys.exit("\n Only root can run this program. \n")

# We are root!

update_and_run()

