Without this patch, it'll hit build error in the 2nd time.
Example:
make-deb.sh #no error: first time
make-deb.sh #hit error: second time
Signed-off-by: Changcheng Liu <changcheng.liu@intel.com>
/bin/bash is a Linuxism. Other operating systems install bash to
different paths. Use /usr/bin/env in shebangs to find bash.
Signed-off-by: Alan Somers <asomers@gmail.com>
Before this commit when running make-debs.sh second time ln will create
the conf symlink inside already exisiting conf dir that was created
on the first tune.
Signed-off-by: Roi Dayan <roid@mellanox.com>
Building a package is disk intensive and running make -j8 on a machine
with a spinner can actually be slower than make. NPROC=1 make-deb.sh
overrides the default value of make -jX.
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Create a debian repository suitable for inclusion in
/etc/apt/sources.list, for the current distribution and using the git
clone from the current working directory.
It is meant to quickly provide teuthology with the packages to run a
job.
Signed-off-by: Loic Dachary <ldachary@redhat.com>