Revision a0757a1c

b/fabfile.py
41 41
env.project_root = "./"
42 42
env.develop = False
43 43
env.autoremove = True
44
env.packages = ['snf-common', 'snf-app', 'snf-ganeti-tools', 'snf-webproject']
44
env.packages = ['snf-common', 'snf-app', 'snf-ganeti-tools', 'snf-webproject',
45
                'snf-okeanos-site']
45 46
env.capture = False
46 47
env.colors = True
47 48

  
......
88 89
            local("python setup.py install")
89 90

  
90 91

  
92
def install(*packages):
93
    for p in packages:
94
        install_pkg("snf-%s" % p)
95

  
96

  
91 97
def buildall():
92 98
    for p in env.packages:
93 99
        build_pkg(p)
94 100
    collectdists()
95 101

  
96 102

  
103
def installall():
104
    for p in env.packages:
105
        install_pkg(p)
106

  
97 107
def collectdists():
98 108
    if os.path.exists("./packages"):
99 109
        notice("removing 'packages' directory")
......
114 124
        remove_pkg("snf-%s" % p)
115 125

  
116 126

  
117
def install(*packages):
118
    for p in packages:
119
        install_pkg("snf-%s" % p)
120 127

  

Also available in: Unified diff