blob: 2fecb61d2930f7a98f84467b3d33beab4e74fd5b [file] [log] [blame]
David James56e6c2c2012-10-24 23:54:41 -07001# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2# 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):
13 if argv:
14 sys.exit(f'{sys.argv[0]}: {__doc__}')
Cindy Lin81093092021-12-09 20:40:57 +000015 print(' '.join(constants.CHROOT_ENVIRONMENT_ALLOWLIST))