scripts: Clarify names of running-as-root assertions.

This should make it more obvious that these functions will exit the
script if the check fails.
This commit is contained in:
Tim Abbott
2018-11-19 10:50:25 -08:00
parent eae9251cb7
commit 3e3eb2aa7f
6 changed files with 12 additions and 12 deletions

View File

@@ -11,9 +11,9 @@ os.environ["PYTHONUNBUFFERED"] = "y"
sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..'))
from scripts.lib.zulip_tools import DEPLOYMENTS_DIR, FAIL, WARNING, ENDC, \
su_to_zulip, get_deployment_lock, release_deployment_lock, script_should_be_root
su_to_zulip, get_deployment_lock, release_deployment_lock, assert_running_as_root
script_should_be_root(strip_lib_from_paths=True)
assert_running_as_root(strip_lib_from_paths=True)
logging.Formatter.converter = time.gmtime
logging.basicConfig(format="%(asctime)s upgrade-zulip: %(message)s",