Might be worth having a look at the contents of the file created at:
/etc/apt/sources.list.d/renci-irods.list
The apt package manager will likely be looking for “trusty” as the output of the “$(lsb_release -sc)”
call, and if that isn’t the case it won’t find the iRODS packages for 14.04.
When doing this in docker using debian:jessie as the base image I needed to force this to be “trusty”, Reference from Dockerfile below:
— —
# Install iRODS v.4.2.0
sudo tee /etc/apt/sources.list.d/renci-irods.list \
&& sudo apt-get update && sudo apt-get install -y \
irods-server \
irods-database-plugin-postgres
— —
Thanks,