Source code for awsfabrictasks.ubuntu

"""
Ubuntu utilities.
"""
from fabric.api import sudo

[docs]def set_locale(locale='en_US'): """ Set locale to avoid the warnings from perl and others about locale failures. """ sudo('locale-gen {locale}.UTF-8'.format(**vars())) sudo('update-locale LANG={locale}.UTF-8 LC_ALL={locale}.UTF-8 LC_MESSAGES=POSIX'.format(**vars()))
Read the Docs v: 1.0.14
Versions
latest
1.1.1
1.0.14
1.0.13
1.0.8
1.0.6
1.0.5
1.0.4
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.