Changeset 896 for branches/1.0/debian/jobmonarch-jobmond.postinst
- Timestamp:
- 05/22/13 12:44:21 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/debian/jobmonarch-jobmond.postinst
r891 r896 5 5 set -e 6 6 7 case "$1" in 8 configure) 9 7 if [ -z "$2" ] 8 then 9 # Only on install (not during upgrade) 10 10 11 12 13 14 11 if [ -x /etc/init.d/jobmond ] 12 then 13 update-rc.d -f jobmond defaults 14 fi 15 15 16 echo "" 17 echo "Additional manual changes are required to setup jobmond:" 18 echo "" 19 echo "1) Edit /etc/jobmond.conf to reflect your local settings and setup:" 20 echo " - BATCH_API: pbs, slurm, sge (experimental), lsf (experimental)" 21 echo "2) Install the python interface to the selected batch queuing system" 22 echo " - pbs-python (for pbs or torque)" 23 echo " - python-pyslurm (for slurm)" 24 echo " - pythongrid (for sge)" 25 echo " - python-pylsf (for lsf)" 26 echo "" 27 28 ;; 29 *) 30 ;; 31 esac 16 echo "" 17 echo "Additional manual changes are required to setup jobmond:" 18 echo "" 19 echo "1) Edit /etc/jobmond.conf to reflect your local settings and setup:" 20 echo " - BATCH_API: pbs, slurm, sge (experimental), lsf (experimental)" 21 echo "2) Install the python interface to the selected batch queuing system" 22 echo " - pbs-python (for pbs or torque)" 23 echo " - python-pyslurm (for slurm)" 24 echo " - python-pylsf (for lsf)" 25 echo "" 26 else 27 # This is a upgrade 28 : 29 fi 32 30 33 31 exit 0
Note: See TracChangeset
for help on using the changeset viewer.