blob: 3be173d831829a4403ae1115dae092307301692e [file] [log] [blame]
Mike Frysingere58c0e22017-10-04 15:43:30 -04001# -*- coding: utf-8 -*-
David James56e6c2c2012-10-24 23:54:41 -07002# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
Mike Nicholsa1414162021-04-22 20:07:22 +00006"""Print the environment whitelist."""
David James56e6c2c2012-10-24 23:54:41 -07007
Mike Frysinger383367e2014-09-16 15:06:17 -04008from __future__ import print_function
9
Mike Frysinger687ab9d2020-02-06 00:35:15 -050010import sys
11
Aviv Keshetb7519e12016-10-04 00:50:00 -070012from chromite.lib import constants
David James56e6c2c2012-10-24 23:54:41 -070013
14
Mike Frysinger54545bc2020-02-16 05:37:56 +000015assert sys.version_info >= (3, 6), 'This module requires Python 3.6+'
Mike Frysinger687ab9d2020-02-06 00:35:15 -050016
17
David James43e14f42012-12-14 13:44:16 -080018def main(_argv):
Mike Frysinger383367e2014-09-16 15:06:17 -040019 print(' '.join(constants.CHROOT_ENVIRONMENT_WHITELIST))