summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-04-25 10:23:45 +0200
committerAndreas Schneider <asn@cryptomilk.org>2019-04-25 10:47:16 +0000
commitdfa4d3cdf7dc541969e7452a6a325dece73bc5a7 (patch)
tree659770144af54c2a476aa9c25db6c7d7d6d1bbc5 /bootstrap
parentae21dc7163c00929ffd3292e390f1badcd86a2dd (diff)
downloadsamba-dfa4d3cdf7dc541969e7452a6a325dece73bc5a7.tar.gz
bootstrap: Add glusterfs and cephfs packages
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/config.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/bootstrap/config.py b/bootstrap/config.py
index eebb38c22ef..c0f3b37cfbf 100644
--- a/bootstrap/config.py
+++ b/bootstrap/config.py
@@ -160,6 +160,9 @@ PKGS = [
# fs
('xfslibs-dev', 'xfsprogs-devel'), # for xfs quota support
+ ('', 'glusterfs-api-devel'),
+ ('glusterfs-common', 'glusterfs-devel'),
+ ('libcephfs-dev', 'libcephfs-devel'),
# misc
# @ means group for rpm, use fedora as rpm default
@@ -393,6 +396,8 @@ DEB_DISTS = {
'lmdb-utils': 'lmdb-utils/trusty-backports',
'liblmdb-dev': 'liblmdb-dev/trusty-backports',
'libunwind-dev': 'libunwind8-dev',
+ 'glusterfs-common': '',
+ 'libcephfs-dev': '',
}
},
'ubuntu1604': {
@@ -401,6 +406,8 @@ DEB_DISTS = {
'replace': {
'python-gpg': 'python-gpgme',
'python3-gpg': 'python3-gpgme',
+ 'glusterfs-common': '',
+ 'libcephfs-dev': '',
}
},
'ubuntu1804': {
@@ -428,6 +435,9 @@ RPM_DISTS = {
# fix: Can't locate Archive/Tar.pm in @INC
'perl': 'perl-core',
'rpcsvc-proto-devel': '',
+ 'glusterfs-api-devel': '',
+ 'glusterfs-devel': '',
+ 'libcephfs-devel': '',
}
},
'centos7': {
@@ -449,6 +459,9 @@ RPM_DISTS = {
# fix: Can't locate Archive/Tar.pm in @INC
'perl': 'perl-core',
'rpcsvc-proto-devel': '',
+ 'glusterfs-api-devel': '',
+ 'glusterfs-devel': '',
+ 'libcephfs-devel': '',
}
},
'fedora28': {
@@ -495,6 +508,7 @@ RPM_DISTS = {
'python3-dns': 'python3-dnspython',
'python3-markdown': 'python3-Markdown',
'quota-devel': '',
+ 'glusterfs-api-devel': '',
}
}
}