blob: 811eb5555a9e956dabec97cdb60768196f9ee01b [file] [log] [blame]
Mike Frysingerf1ba7ad2022-09-12 05:42:57 -04001# Copyright 2012 The ChromiumOS Authors
David James56e6c2c2012-10-24 23:54:41 -07002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Cindy Lin81093092021-12-09 20:40:57 +00005"""Print the environment allowlist."""
David James56e6c2c2012-10-24 23:54:41 -07006
Mike Frysinger93a3ee92021-12-17 00:23:52 -05007import sys
8
Aviv Keshetb7519e12016-10-04 00:50:00 -07009from chromite.lib import constants
David James56e6c2c2012-10-24 23:54:41 -070010
11
Mike Frysinger93a3ee92021-12-17 00:23:52 -050012def main(argv):
Alex Klein1699fab2022-09-08 08:46:06 -060013 if argv:
14 sys.exit(f"{sys.argv[0]}: {__doc__}")
15 print(" ".join(constants.CHROOT_ENVIRONMENT_ALLOWLIST))