Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions io_burst/burst_io.sh
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,13 @@ while [[ $# -gt 0 ]]; do
;;
esac
done

# Install needed packages based on what's listed in the wrapper's json file
${TOOLS_BIN}/package_tool --no_packages $to_no_pkg_install --wrapper_config ${run_dir}/io_burst-wrapper.json
if [[ $? -ne 0 ]]; then
exit_out "package_tool reported failure installing dependencies." 1
fi

#
# Get the disk size if present.
#
Expand Down
27 changes: 27 additions & 0 deletions io_burst/io_burst-wrapper.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"dependencies": {
"rhel": [
"bc",
"gcc",
"git",
"make",
"perf",
"unzip",
"zip",
"pcp-zeroconf",
"pcp-pmda-openmetrics",
"pcp-pmda-denki"
],
"ubuntu": [
"bc",
"gcc",
"git",
"make",
"linux-tools-generic",
"unzip",
"zip",
"pcp-zeroconf"
]
}
}