This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # This script will instruct ceph to immediately scrub N PGs that are last on list of scrubbed PGs ordered by date | |
| # Default amount of PGs is 5 | |
| count=5 | |
| if [ $# -gt 0 ]; then | |
| count=$1 | |
| fi |