Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / settings / common / plankton.py @ bfd9f988

History | View | Annotate | Download (725 Bytes)

1
# -*- coding: utf-8 -*-
2
#
3
# Plankton configuration
4
########################
5

    
6
from os.path import join
7

    
8
# Backend settings
9
PITHOS_ROOT = '/usr/share/pithos'
10
BACKEND_DB_CONNECTION = 'sqlite:///' + join(PITHOS_ROOT, 'backend.db')
11
BACKEND_BLOCK_PATH = join(PITHOS_ROOT, 'data/')
12

    
13
# The Pithos container where images will be stored by default
14
DEFAULT_PLANKTON_CONTAINER = 'images'
15

    
16
ALLOWED_DISK_FORMATS = ('diskdump', 'dump', 'extdump', 'lvm', 'ntfsclone',
17
                        'ntfsdump')
18
ALLOWED_CONTAINER_FORMATS = ('aki', 'ari', 'ami', 'bare', 'ovf')
19

    
20
DEFAULT_DISK_FORMAT = 'dump'
21
DEFAULT_CONTAINER_FORMAT = 'bare'
22

    
23
# The owner of the images that will be marked as "system images" by the UI
24
SYSTEM_IMAGES_OWNER = 'okeanos'