blob: d946dca83a03a453a8e40a214362ac31243f1b25 [file] [log] [blame]
# Copyright 2012 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Print the environment allowlist."""
import sys
from chromite.lib import constants
def main(argv) -> None:
if argv:
sys.exit(f"{sys.argv[0]}: {__doc__}")
print(" ".join(constants.CHROOT_ENVIRONMENT_ALLOWLIST))