All modules should be using /usr/bin/python in the shebang as ansible_python_interpreter processes this (see FAQ).

Fixing for standardization purposes.
This commit is contained in:
Michael DeHaan 2014-01-15 09:52:17 -05:00
parent 1740a7a3f1
commit 6f49642286
5 changed files with 5 additions and 6 deletions

View file

@ -1,5 +1,4 @@
#!/usr/bin/env python
#
#!/usr/bin/python
# (c) 2013, Cove Schneider
#

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/python
#coding: utf-8 -*-
# This module is free software: you can redistribute it and/or modify

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/python
#coding: utf-8 -*-
# This module is free software: you can redistribute it and/or modify

View file

@ -1,4 +1,4 @@
#!/usr/bin/python2
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""

View file

@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/python
#coding: utf-8 -*-
# This module is free software: you can redistribute it and/or modify