Changeset - 0128177a4f14
[Not reviewed]
0 1 0
Lance Edgar (lance) - 11 years ago 2013-05-16 20:03:06
lance@edbob.org
Added `create_user` Fabric command.

This creates the `rattail` user on a Linux environment. Probably needs some
improvement but it's a start.
1 file changed with 9 insertions and 0 deletions:
0 comments (0 inline, 0 general)
fabfile.py
Show inline comments
 
@@ -37,12 +37,21 @@ def release():
 
    Release a new version of 'rattail'.
 
    """
 

	
 
    shutil.rmtree('rattail.egg-info')
 
    local("python setup.py egg_info --tag-build='' sdist --formats=gztar register upload")
 

	
 
    filename = 'rattail-{0}.tar.gz'.format(__version__)
 

	
 
    put(os.path.join('dist', filename), '/srv/pypi/{0}'.format(filename))
 
    with cd('/srv/pypi'):
 
        run('rm --recursive --force simple')
 
        run('compoze index')
 

	
 

	
 
@task
 
def create_user():
 
    """
 
    Create the 'rattail' user account.
 
    """
 

	
 
    sudo('adduser --system --home /var/local/lib/rattail --group rattail')
0 comments (0 inline, 0 general)