blob: 2e332d5502ab277923f56996ccbf14fe6a292e45 [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
Don Garrett25f309a2014-03-19 14:02:12 -07006"""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
Aviv Keshetb7519e12016-10-04 00:50:00 -070010from chromite.lib import constants
David James56e6c2c2012-10-24 23:54:41 -070011
12
David James43e14f42012-12-14 13:44:16 -080013def main(_argv):
Mike Frysinger383367e2014-09-16 15:06:17 -040014 print(' '.join(constants.CHROOT_ENVIRONMENT_WHITELIST))