Skip to content

Commit

Permalink
Merge pull request #474 from lmilleri/fix-issue-471
Browse files Browse the repository at this point in the history
Fix issue 471
  • Loading branch information
adrianchiris authored Jul 13, 2023
2 parents 6a6f8d8 + 95eed3f commit 52e9d20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ contents:
inline: |
#!/bin/bash
set -eux
input="/etc/sriov_config.json"
input="/etc/sriov-operator/sriov_config.json"
minId=-1
maxId=-1
Expand All @@ -26,7 +26,7 @@ contents:
}
if [ ! -f $input ]; then
echo "File /etc/sriov_config.json not exist."
echo "File /etc/sriov-operator/sriov_config.json not exist."
exit
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ contents:
inline: |
#!/bin/bash
set -eux
input="/etc/sriov_config.json"
input="/etc/sriov-operator/sriov_config.json"
UDEV_RULE_FILE='/etc/udev/rules.d/10-persistent-net.rules'
if [ ! -f $input ]; then
echo "File /etc/sriov_config.json not exist."
echo "File /etc/sriov-operator/sriov_config.json not exist."
exit
fi
Expand Down

0 comments on commit 52e9d20

Please sign in to comment.