Switch to unified view

a/fabfile.py b/fabfile.py
...
...
50
50
51
def setup_system():
51
def setup_system():
52
    """
52
    """
53
    Install packages and setup stuff - run this on a new system
53
    Install packages and setup stuff - run this on a new system
54
    """
54
    """
55
    #sudo('apt-get update') # In case no one ran this before
55
    sudo('apt-get update') # In case no one ran this before
56
    install(PKGDEPS)
56
    install(PKGDEPS)
57
57
58
    _fix_lib64('libz.so')
58
    _fix_lib64('libz.so')
59
    _fix_lib64('libjpeg.so')
59
    _fix_lib64('libjpeg.so')
60
60