add Final Infrastructure Setup
This commit is contained in:
commit
7733dde658
174 changed files with 204949 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
#!/bin/bash
|
||||
|
||||
dest=$1
|
||||
test_dir=$2
|
||||
tixstream_user=$4
|
||||
tixstream_group=$5
|
||||
|
||||
if [ "${dest}" == "" ]; then
|
||||
dest="/tmp"
|
||||
fi
|
||||
|
||||
echo "this is a plain text dummy metadata file" >${dest}/metadata.txt
|
||||
|
||||
truncate -s 5g ${dest}/${test_dir}/5g.mxf
|
||||
truncate -s 1g ${dest}/${test_dir}/1g.mxf
|
||||
|
||||
for i in {1..100}; do
|
||||
dd if=/dev/urandom of=/local_testdata/test-source/small_$i.dat bs=1M count=10 status=none
|
||||
done
|
||||
|
||||
chown ${tixstream_user}:${tixstream_group} ${dest}/${test_dir}/*
|
||||
Loading…
Add table
Add a link
Reference in a new issue