From: Andreas Schneider Date: Thu, 25 Apr 2019 08:23:45 +0000 (+0200) Subject: bootstrap: Add glusterfs and cephfs packages X-Git-Tag: tdb-1.4.1~297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dfa4d3cdf7dc541969e7452a6a325dece73bc5a7;p=thirdparty%2Fsamba.git bootstrap: Add glusterfs and cephfs packages Signed-off-by: Andreas Schneider Reviewed-by: Ralph Boehme --- 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': '', } } }