removed previouslly deprecated settings (#55662)

* removed previouslly deprecated settings

  fixes #55304

* also removed from play context
This commit is contained in:
Brian Coca 2019-05-15 16:36:30 -04:00 committed by GitHub
parent 4bf134756b
commit 183ba93ba3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 116 deletions

View file

@ -39,12 +39,6 @@ class ShellBase(AnsiblePlugin):
super(ShellBase, self).__init__()
self.env = {}
if C.DEFAULT_MODULE_SET_LOCALE:
module_locale = C.DEFAULT_MODULE_LANG
self.env = {'LANG': module_locale,
'LC_ALL': module_locale,
'LC_MESSAGES': module_locale}
self.tmpdir = None
self.executable = None