Changeset - 4f96c6a457b7
[Not reviewed]
0 1 0
Lance Edgar (lance) - 11 years ago 2013-06-01 01:07:55
lance@edbob.org
Changed home folder of system user account to `/var/lib/rattail`.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
fabfile.py
Show inline comments
 
@@ -33,25 +33,25 @@ execfile(os.path.join(os.path.dirname(__file__), 'rattail', '_version.py'))
 

	
 
@task
 
def release():
 
    """
 
    Release a new version of 'rattail'.
 
    """
 

	
 
    shutil.rmtree('rattail.egg-info')
 
    local('python setup.py 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')
 
    sudo('adduser --system --home /var/lib/rattail --group rattail')
0 comments (0 inline, 0 general)