diff options
-rwxr-xr-x | share/hydractl/requirements | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/share/hydractl/requirements b/share/hydractl/requirements index bbc743d..dbfcf7f 100755 --- a/share/hydractl/requirements +++ b/share/hydractl/requirements @@ -1,4 +1,11 @@ #!/bin/bash # -# TODO: Get all needed requirements +# Get all needed requirements. # + +REQUIREMENTS="lsb_releas facter" + +# Check for requirements. +for req in "$REQUIREMENTS"; do + hydra_install_package $req +done |