View snapraid_diff_n_sync.sh
This file contains 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/bash | |
####################################################################### | |
# This is a helper script that keeps snapraid parity info in sync with | |
# your data and optionally verifies the parity info. Here's how it works: | |
# 1) Shuts down configured services | |
# 2) Calls diff to figure out if the parity info is out of sync. | |
# 3) If parity info is out of sync, AND the number of deleted or changed files exceed | |
# X (each configurable), it triggers an alert email and stops. (In case of | |
# accidental deletions, you have the opportunity to recover them from |
View settings.json
This file contains 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
{ | |
"workbench.colorCustomizations": { | |
"editorCursor.background": "#ffffff", | |
"editorCursor.foreground": "#0000bb", | |
"editor.lineHighlightBackground": "#f0f0f0", | |
"editor.selectionBackground": "#aaeeff" | |
}, | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": false, | |
"explorer.openEditors.visible": 0, |
View step-function-wait-loop.yml
This file contains 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
StopInstances: | |
Type: Task | |
Resource: ${self:custom.function-arn}-StopInstances | |
Next: WaitForInstancesStop | |
WaitForInstancesStop: | |
Type: Wait | |
Seconds: 15 | |
Next: CheckInstancesStopped | |
CheckInstancesStopped: | |
Type: Task |
View step-function-retry.yml
This file contains 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
CheckEC2TargetStatus: | |
Type: Task | |
Resource: ${self:custom.function-arn}-CheckEC2TargetStatus | |
Next: EvaluateEC2TargetStatus | |
ResultPath: '$.onEC2TargetStatus' | |
Retry: | |
- ErrorEquals: | |
- RequestLimitExceeded | |
- ThrottlingException | |
- SnapshotCreationPerVolumeRateExceeded |
View step-function-iterator.yml
This file contains 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
CreateSnapshot: | |
Type: Task | |
Resource: ${self:custom.function-arn}-CreateSnapshot | |
Next: CreateSnapshotIterator | |
Retry: ${file(common.yml):reqLimitRetry} | |
CreateSnapshotIterator: | |
Type: Task | |
Resource: ${self:custom.function-arn}-Iterate | |
InputPath: '$.snapshotCreateIterator' | |
ResultPath: '$.snapshotCreateIterator' |
View move_films_bsd.sh
This file contains 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/bash | |
download="/mnt/vol/media/Downloads/" | |
mov="/mnt/vol/media/Movies/" | |
for x in {A..Z}; do | |
find $download -not -path "*tv*" -iname ""$x"*.m??" -not -iname "*sample*" -or -not -path "*tv*" -iname ""$x"*.avi" -not -iname "*sample*" | while read d; | |
do | |
p=$(basename "$d") | |
r=$(dirname "$d") |