Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jarelllama authored Mar 28, 2024
1 parent 29fde19 commit 48a26c1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions parked.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ function add_unparked_domains {
check_for_unparked "x02" & check_for_unparked "x03" &
check_for_unparked "x04" & check_for_unparked "x05" &
check_for_unparked "x06" & check_for_unparked "x07" &
check_for_unparked "x08" & check_for_unparked "x09"
check_for_unparked "x08" & check_for_unparked "x09" &
check_for_unparked "x10" & check_for_unparked "x11"

wait

Expand Down Expand Up @@ -53,7 +54,8 @@ function remove_parked_domains {
check_for_parked "x02" & check_for_parked "x03" &
check_for_parked "x04" & check_for_parked "x05" &
check_for_parked "x06" & check_for_parked "x07" &
check_for_parked "x08" & check_for_parked "x09"
check_for_parked "x08" & check_for_parked "x09" &
check_for_parked "x10" & check_for_parked "x11"

wait

Expand All @@ -70,6 +72,8 @@ function remove_parked_domains {
}

function check_for_unparked {
[[ -f "$1" ]] && return # Return if split file not found

total=$(wc -l < "$1")
count=1
# Check for parked message in site's HTML
Expand All @@ -89,6 +93,8 @@ function check_for_unparked {
}

function check_for_parked {
[[ -f "$1" ]] && return # Return if split file not found

total=$(wc -l < "$1")
count=1
# Check for parked message in site's HTML
Expand Down

0 comments on commit 48a26c1

Please sign in to comment.