File: nd_execute

package info (click to toggle)
neurodebian 0.43.0
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,960 kB
  • sloc: sh: 2,419; python: 1,978; perl: 412; makefile: 207; javascript: 63
file content (56 lines) | stat: -rwxr-xr-x 1,072 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/bin/bash

if [ -z "$1" ]; then
cat << EOT
Script to log into a particular COW and execute some command.

Synopsis
--------

  nd_execute <family> <codename> <arch> [cowbuilderopts] command

EOT
exit 1
fi

family=$1
dist=$2
arch=$3
bmdir=
#$4

set -e

if [ -z "$family" ]; then
  echo "You need to provide a distribution family ('debian', 'ubuntu'); prefix with 'nd+' to enable the NeuroDebian repository."
  exit 1
fi

if [ -z "$dist" ]; then
  echo "You need to provide a distribution codename (e.g. 'lenny', 'squeeze')."
  exit 1
fi

if [ -z "$arch" ]; then
  echo "You need to provide an architecture (e.g. 'i386', 'amd64')."
  exit 1
fi

. /etc/neurodebian/cmdsettings.sh

shift; shift; shift; # get rid of those from future use of $@

# common options
opts="--distribution $dist --aptcache $aptcache --buildplace $buildplace"


#if [ -n "bmdir" ]; then
#  options="$opts --bindmounts $bmdir"
#else
  options="$opts"
#fi

cowbuilder --execute \
             --basepath ${cowbuilderroot}/cow/${family}-${dist}-${arch}.cow \
             $options \
             "$@"