source: trunk/torque.config @ 82

Last change on this file since 82 was 45, checked in by bas, 14 years ago

reverting back to old installation with one single package

File size: 640 bytes
RevLine 
[10]1#!/bin/sh -e
2
3# Source debconf library.
4. /usr/share/debconf/confmodule
5
6# Display disclaimer
[14]7db_input high torque/disclaimer || true
[10]8db_go
9
10# Let the user choose which daemons to run
[14]11db_input high torque/daemon_list || true
[10]12db_go
13
[12]14# Ask the user for server_name
[14]15db_input high torque/server_name || true
[12]16db_go
17
[22]18# If the user wants daemons, ask for any options to be passed
19db_get torque/daemon_list
20for daemon in $RET; do
21    daemon=${daemon%,}
22    db_input medium torque/${daemon}_opts || true
23    db_go
24done
25
[31]26# Let the user specify which option must be used when pbs_mom restart
27db_input medium torque/pbs_mom_restart_opts || true
28db_go
Note: See TracBrowser for help on using the repository browser.