Skip to content

Commit

Permalink
Fix a bug for 6.18
Browse files Browse the repository at this point in the history
  • Loading branch information
Samson-W committed Oct 17, 2019
1 parent 6a4de4e commit 61327ff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ audit_redhat () {
audit () {
if [ $OS_RELEASE -eq 1 ]; then
audit_debian
elif [ $OS_RELEASE -eq 1 ]; then
elif [ $OS_RELEASE -eq 2 ]; then
audit_redhat
else
crit "Current OS is not support!"
Expand Down Expand Up @@ -73,7 +73,7 @@ apply_redhat () {
apply () {
if [ $OS_RELEASE -eq 1 ]; then
apply_debian
elif [ $OS_RELEASE -eq 1 ]; then
elif [ $OS_RELEASE -eq 2 ]; then
apply_redhat
else
crit "Current OS is not support!"
Expand Down

0 comments on commit 61327ff

Please sign in to comment.