When starting the upgrade or update, you notice the following errors:
./install
grep: osystem: No such file or directory
./install: 199: [: !=: exexpected operator
./install: 44: [: /local/install/fp1/linux64/tools/-E: unexpected operator
./install: 51: [: /local/install/fp1/linux64/tools/-e: unexpected operator
./install: 57: [: /local/install/fp1/linux64/tools/-e: unexpected operator
The Domino install script uses #!/bin/sh for the shell. Ubuntu uses bash.
In order to get install working, you need to alter this script.
Change the first line in install to #!/bin/bash
Before running install again, we need to add an environment variable:
export INSTALL_NO_CHECK=1
./install

Views: 33