File: postinst

package info (click to toggle)
dqs 3.1.8-9
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 8,908 kB
  • ctags: 9,887
  • sloc: ansic: 87,447; sh: 2,952; makefile: 442; yacc: 247; lex: 94; perl: 83; csh: 51; fortran: 24; awk: 16
file content (21 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh


if [ ! -r /etc/dqs/resolve_file ] ; then

	CELL=Local

    QMASTER=`hostname --fqdn`

    ALIAS=`hostname --fqdn`

    echo "${CELL} ${QMASTER} ${ALIAS} NONE NONE" >/etc/dqs/resolve_file

    echo "Now run qconf -aq and qmod -e [queuename] on the cell master"
    echo "to create a queue for this host.  See the documentation in"
    echo "/usr/doc/dqs for further details."

fi


#DEBHELPER#