blob: 8e14464e9b61248c65594543d0f8ba665206444b [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
Mike Nicholsa1414162021-04-22 20:07:22 +00005"""Print the environment whitelist."""
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__}')
Mike Frysinger383367e2014-09-16 15:06:17 -040015 print(' '.join(constants.CHROOT_ENVIRONMENT_WHITELIST))