diff --git a/apt b/apt index be4e491ddf3..7b3bda79c1c 100755 --- a/apt +++ b/apt @@ -1,4 +1,6 @@ #!/usr/bin/python -tt +# -*- coding: utf-8 -*- + # (c) 2012, Flowroute LLC # Written by Matthew Williams # Based on yum module written by Seth Vidal diff --git a/assemble b/assemble index c28ef8120ef..5c9556a07ef 100755 --- a/assemble +++ b/assemble @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Stephen Fromm # diff --git a/async_status b/async_status index 38049e97341..811c67c9765 100755 --- a/async_status +++ b/async_status @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan , and others # diff --git a/async_wrapper b/async_wrapper index 61ae5117ef7..753c29e9d6c 100755 --- a/async_wrapper +++ b/async_wrapper @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan , and others # diff --git a/authorized_key b/authorized_key index 3fe99f96358..67108c9f68d 100755 --- a/authorized_key +++ b/authorized_key @@ -1,4 +1,6 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- + """ Ansible module to add authorized_keys for ssh logins. (c) 2012, Brad Olson diff --git a/copy b/copy index b0c24bb3125..a5aef64cd5e 100755 --- a/copy +++ b/copy @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/facter b/facter index 554e63f3a98..373dbcab08f 100755 --- a/facter +++ b/facter @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/file b/file index ad7b2b3b61d..6acfb259249 100755 --- a/file +++ b/file @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/get_url b/get_url index 057a8c662b6..038362ff310 100755 --- a/get_url +++ b/get_url @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Jan-Piet Mens # diff --git a/git b/git index 61abfc376b8..392a7d5ddc4 100755 --- a/git +++ b/git @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/group b/group index 93a8ae50891..00e2ebc790e 100755 --- a/group +++ b/group @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- # (c) 2012, Stephen Fromm # diff --git a/mount b/mount index 3ce3a9ed1de..650458cc8b8 100755 --- a/mount +++ b/mount @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Red Hat, inc # Written by Seth Vidal diff --git a/mysql_db b/mysql_db index 157c0500137..1818b8e95ab 100755 --- a/mysql_db +++ b/mysql_db @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Mark Theunissen # Sponsored by Four Kitchens http://fourkitchens.com. diff --git a/ohai b/ohai index 1d0763fd33a..b752e6e9258 100755 --- a/ohai +++ b/ohai @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/ping b/ping index 1be774fcc74..a620a0943d2 100755 --- a/ping +++ b/ping @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/postgresql_db b/postgresql_db index 9c5f3b8a65d..73fe86374fd 100755 --- a/postgresql_db +++ b/postgresql_db @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # This file is part of Ansible # diff --git a/postgresql_user b/postgresql_user index a097051df30..18c16a09311 100755 --- a/postgresql_user +++ b/postgresql_user @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # This file is part of Ansible # diff --git a/service b/service index b40f0409509..27207071169 100755 --- a/service +++ b/service @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/setup b/setup index 19497f9b200..42e1ea42afb 100755 --- a/setup +++ b/setup @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/slurp b/slurp index 2bede8a9701..f8ac3bab0ee 100755 --- a/slurp +++ b/slurp @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Michael DeHaan # diff --git a/user b/user index 5b653c537c5..6793d39680f 100755 --- a/user +++ b/user @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- # (c) 2012, Stephen Fromm # diff --git a/virt b/virt index 45627b3d617..fdbf1fc86c9 100755 --- a/virt +++ b/virt @@ -1,9 +1,11 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- + """ Virt management features Copyright 2007, 2012 Red Hat, Inc -Michael DeHaan +Michael DeHaan Seth Vidal This software may be freely redistributed under the terms of the GNU diff --git a/yum b/yum index 58a33d9bf6d..0cecc15d6c4 100755 --- a/yum +++ b/yum @@ -1,4 +1,6 @@ #!/usr/bin/python -tt +# -*- coding: utf-8 -*- + # (c) 2012, Red Hat, Inc # Written by Seth Vidal #