2010-04-14 03:04:49 +00:00
|
|
|
#!/bin/sh
|
2010-05-13 16:20:48 +00:00
|
|
|
# Sample Linux postbootscript script for installing and configuring HPC software
|
2010-04-14 03:04:49 +00:00
|
|
|
# for statefull (full-disk install) nodes
|
|
|
|
# Make sure this runs after the otherpkgs postbootscript
|
|
|
|
#
|
|
|
|
|
|
|
|
ps_dir=/xcatpost
|
|
|
|
|
2010-05-13 16:20:48 +00:00
|
|
|
# Run script to set up some basics for all HPC software
|
|
|
|
$ps_dir/IBMhpc.postscript
|
2012-08-15 09:53:16 +00:00
|
|
|
$ps_dir/IBMhpc.post
|
2010-05-13 16:20:48 +00:00
|
|
|
|
2010-04-14 03:04:49 +00:00
|
|
|
# Run script to install gpfs updates
|
|
|
|
$ps_dir/gpfs_updates
|
|
|
|
|
|
|
|
|
|
|
|
# Run script to accept compiler license
|
|
|
|
$ps_dir/compilers_license
|
2012-08-15 09:53:16 +00:00
|
|
|
#$ps_dir/upc_license
|
2010-04-14 03:04:49 +00:00
|
|
|
|
|
|
|
# Run script to install PE and accept license
|
2012-08-15 09:53:16 +00:00
|
|
|
$ps_dir/pe_install-1200
|
2010-04-14 03:04:49 +00:00
|
|
|
|
|
|
|
# Run script to accept LoadLeveler license, install product rpms,
|
|
|
|
# and do some config
|
2012-08-15 09:53:16 +00:00
|
|
|
$ps_dir/loadl_install-5103
|
2010-04-14 03:04:49 +00:00
|
|
|
|