forked from pulp/pulp_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
22 lines (16 loc) · 737 Bytes
/
Copy pathconstants.py
File metadata and controls
22 lines (16 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PACKAGE_TYPE_ID = 'python_package'
REPO_NOTE_PYTHON = 'PYTHON'
IMPORTER_TYPE_ID = 'python_importer'
DISTRIBUTOR_TYPE_ID = 'python_distributor'
CLI_DISTRIBUTOR_ID = 'cli_python_distributor'
DISTRIBUTOR_CONFIG_FILE_NAME = 'server/plugins.conf.d/python_distributor.json'
# Config keys for the distributor plugin conf
CONFIG_KEY_PUBLISH_DIRECTORY = 'python_publish_directory'
CONFIG_VALUE_PUBLISH_DIRECTORY = '/var/lib/pulp/published/python'
# Config keys for the importer plugin conf
CONFIG_KEY_PACKAGE_NAMES = 'package_names'
# STEP_ID
PUBLISH_STEP_PUBLISHER = 'python_publish_step'
PUBLISH_STEP_CONTENT = 'python_publish_content'
PUBLISH_STEP_METADATA = 'python_publish_metadata'
PUBLISH_STEP_OVER_HTTP = 'python_publish_over_http'