Skip to content

Commit

Permalink
Merge pull request #449 from tjwatson/elevateCheckpointPID
Browse files Browse the repository at this point in the history
Bump PID used for checkpoint to be > 1000
  • Loading branch information
tjwatson authored Sep 8, 2023
2 parents ef8defe + 63dee10 commit 0b428b1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions releases/23.0.0.9/full/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# hack to bump up the pid by 100
for i in {1..100}
# hack to bump up the pid by 1000
for i in {1..1000}
do
pidplus.sh
done
Expand Down
4 changes: 2 additions & 2 deletions releases/23.0.0.9/kernel-slim/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# hack to bump up the pid by 100
for i in {1..100}
# hack to bump up the pid by 1000
for i in {1..1000}
do
pidplus.sh
done
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/beta/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# hack to bump up the pid by 100
for i in {1..100}
# hack to bump up the pid by 1000
for i in {1..1000}
do
pidplus.sh
done
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/full/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# hack to bump up the pid by 100
for i in {1..100}
# hack to bump up the pid by 1000
for i in {1..1000}
do
pidplus.sh
done
Expand Down
4 changes: 2 additions & 2 deletions releases/latest/kernel-slim/helpers/build/checkpoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# hack to bump up the pid by 100
for i in {1..100}
# hack to bump up the pid by 1000
for i in {1..1000}
do
pidplus.sh
done
Expand Down

0 comments on commit 0b428b1

Please sign in to comment.