diff options
author | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2014-08-28 00:19:10 -0400 |
---|---|---|
committer | Rick Farina (Zero_Chaos) <zerochaos@gentoo.org> | 2014-08-28 00:19:10 -0400 |
commit | 466bce37388bf9d5bf26c9cf813761df17ecb187 (patch) | |
tree | 61df353e05a5865185a614d80bc44d804c55297e /tinderbox | |
parent | change default log directory to be in /var/log (diff) | |
download | qa-scripts-466bce37388bf9d5bf26c9cf813761df17ecb187.tar.gz qa-scripts-466bce37388bf9d5bf26c9cf813761df17ecb187.tar.bz2 qa-scripts-466bce37388bf9d5bf26c9cf813761df17ecb187.zip |
use $(cat /proc/sys/kernel/random/uuid) for uuid
Diffstat (limited to 'tinderbox')
-rw-r--r-- | tinderbox/bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinderbox/bashrc b/tinderbox/bashrc index f6d6351..71da78e 100644 --- a/tinderbox/bashrc +++ b/tinderbox/bashrc @@ -64,7 +64,7 @@ : ${TINDERBOX_DIR:="/var/log/tinderbox"} PACKAGE_DATA_DIR="${TINDERBOX_DIR}/${CATEGORY}/${PN}" -BUILD_DATA_DIR="${PACKAGE_DATA_DIR}/${PF}/$(uuidgen)" +BUILD_DATA_DIR="${PACKAGE_DATA_DIR}/${PF}/$(cat /proc/sys/kernel/random/uuid)" tinderbox_setup_common() { SANDBOX_ON=0 mkdir -p "${BUILD_DATA_DIR}" > /dev/null |