aboutsummaryrefslogtreecommitdiff
path: root/share/hydractl/requirements
blob: dbfcf7f56353c69a2fe9a73a043384e93b1589bb (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash
#
# Get all needed requirements.
#

REQUIREMENTS="lsb_releas facter"

# Check for requirements.
for req in "$REQUIREMENTS"; do
  hydra_install_package $req
done