Revision 3a1f62ed snf-deploy/snfdeploy/components.py

b/snf-deploy/snfdeploy/components.py
430 430

  
431 431
class Image(SynnefoComponent):
432 432
    REQUIRED_PACKAGES = [
433
        "snf-pithos-backend",
434 433
        "snf-image",
435 434
        ]
436 435

  
......
838 837
class Pithos(SynnefoComponent):
839 838
    REQUIRED_PACKAGES = [
840 839
        "kamaki",
841
        "snf-pithos-backend",
842 840
        "snf-pithos-app",
843 841
        "snf-pithos-webclient",
844 842
        ]
......
874 872
        return ["pithos-migrate stamp head"]
875 873

  
876 874

  
875
class PithosBackend(SynnefoComponent):
876
    REQUIRED_PACKAGES = [
877
        "snf-pithos-backend",
878
        ]
879

  
880
    def configure(self):
881
        r1 = {
882
            "db_node": self.env.env.db.ip,
883
            "synnefo_user": self.env.env.synnefo_user,
884
            "synnefo_db_passwd": self.env.env.synnefo_db_passwd,
885
            "pithos_dir": self.env.env.pithos_dir,
886
            }
887

  
888
        return [
889
            ("/etc/synnefo/backend.conf", r1, {}),
890
            ]
891

  
892

  
877 893
class Cyclades(SynnefoComponent):
878 894
    REQUIRED_PACKAGES = [
879 895
        "memcached",
880 896
        "python-memcache",
881
        "snf-pithos-backend",
882 897
        "kamaki",
883 898
        "snf-cyclades-app",
884 899
        "python-django-south",

Also available in: Unified diff