File: buildd-config.sh

package info (click to toggle)
pbuilder 0.161
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,148 kB
  • ctags: 109
  • sloc: sh: 2,705; xml: 1,663; makefile: 236
file content (16 lines) | stat: -rw-r--r-- 373 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# this is the configuration for buildd-pbuilder.

BASEDIRECTORY=/var/cache/pbuilder/pbuildd/
MIRROR=ftp.debian.org
HOOKDIR=/usr/share/doc/pbuilder/examples/pbuildd/hookdir
ROOTCOMMAND=sudo

# the following is one sample:
function waitingroutine () {
    while sleep 1s; do
    	if ps ax | grep "x[l]ock"; then
		# if xlock does exist, break from loop
		break
	fi
    done
}