Skip to content

Commit 2f790c7

Browse files
ddeiddarexcsn
authored andcommitted
Fix munge installation
This commit adds the missing libgcrypt dev library to all OSs except for Ubuntu 18 (where it was already present) to fix the munge installation error. Signed-off-by: ddeidda <[email protected]>
1 parent 763e87d commit 2f790c7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

attributes/default.rb

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@
130130
libXmu-devel hwloc-devel db4-devel tcl-devel automake autoconf pyparted libtool
131131
httpd boost-devel redhat-lsb mlocate mpich-devel openmpi-devel R atlas-devel
132132
blas-devel fftw-devel libffi-devel openssl-devel dkms mysql-devel libedit-devel
133-
libical-devel postgresql-devel postgresql-server sendmail mdadm python python-pip]
133+
libical-devel postgresql-devel postgresql-server sendmail mdadm python python-pip
134+
libgcrypt-devel]
134135

135136
# Lustre Drivers for Centos 6
136137
default['cfncluster']['lustre']['version'] = '2.10.6'
@@ -143,7 +144,7 @@
143144
httpd boost-devel redhat-lsb mlocate lvm2 mpich-devel R atlas-devel
144145
blas-devel fftw-devel libffi-devel openssl-devel dkms mariadb-devel libedit-devel
145146
libical-devel postgresql-devel postgresql-server sendmail libxml2-devel libglvnd-devel mdadm python python-pip
146-
libssh2-devel]
147+
libssh2-devel libgcrypt-devel]
147148
if node['platform_version'].split('.')[1] == '6'
148149
# Lustre Drivers for Centos 7.6
149150
default['cfncluster']['lustre']['version'] = '2.10.6'
@@ -165,7 +166,7 @@
165166
libXmu-devel hwloc-devel db4-devel tcl-devel automake autoconf pyparted libtool
166167
httpd boost-devel redhat-lsb mlocate mpich-devel R atlas-devel fftw-devel
167168
libffi-devel dkms mysql-devel libedit-devel postgresql-devel postgresql-server
168-
sendmail cmake byacc libglvnd-devel mdadm]
169+
sendmail cmake byacc libglvnd-devel mdadm libgcrypt-devel]
169170
end
170171

171172
default['cfncluster']['ganglia']['apache_user'] = 'apache'
@@ -182,10 +183,11 @@
182183
tcl-dev automake autoconf python-parted libtool librrd-dev libapr1-dev libconfuse-dev
183184
apache2 libboost-dev libdb-dev tcsh libssl-dev libncurses5-dev libpam0g-dev libxt-dev
184185
libmotif-dev libxmu-dev libxft-dev libhwloc-dev man-db lvm2 libmpich-dev python python-pip
185-
r-base libatlas-dev libblas-dev libfftw3-dev libffi-dev libssl-dev libxml2-dev mdadm]
186+
r-base libatlas-dev libblas-dev libfftw3-dev libffi-dev libssl-dev libxml2-dev mdadm
187+
libgcrypt20-dev]
186188
if node['platform_version'] == '18.04'
187189
default['cfncluster']['base_packages'].delete('libatlas-dev')
188-
default['cfncluster']['base_packages'].push('libatlas-base-dev', 'libgcrypt20-dev', 'libssl1.0-dev', 'libglvnd-dev')
190+
default['cfncluster']['base_packages'].push('libatlas-base-dev', 'libssl1.0-dev', 'libglvnd-dev')
189191
default['cfncluster']['sge']['version'] = '8.1.9+dfsg-9build1'
190192
end
191193

0 commit comments

Comments
 (0)