-
Notifications
You must be signed in to change notification settings - Fork 0
/
btrfs_toolbox.sh
executable file
·95 lines (88 loc) · 2.9 KB
/
btrfs_toolbox.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
# bss.sh btrfs incremental backup script
# Copyright (C) 2021 Adam Prycki (email: <-REDACTED-> )
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>
#
# Niniejszy program jest wolnym oprogramowaniem; możesz go
# rozprowadzać dalej i/lub modyfikować na warunkach Powszechnej
# Licencji Publicznej GNU, wydanej przez Fundację Wolnego
# Oprogramowania - według wersji 2 tej Licencji lub (według twojego
# wyboru) którejś z późniejszych wersji.
#
# Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on
# użyteczny - jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej
# gwarancji PRZYDATNOŚCI HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH
# ZASTOSOWAŃ. W celu uzyskania bliższych informacji sięgnij do
# Powszechnej Licencji Publicznej GNU.
#
# Z pewnością wraz z niniejszym programem otrzymałeś też egzemplarz
# Powszechnej Licencji Publicznej GNU (GNU General Public License);
# jeśli nie - zobacz <http://www.gnu.org/licenses/>.
#
[ "$VERBOSE" = "" ] && VERBOSE=false
btrfs_FSs="$(df -T| awk '$2=="btrfs"'|sort| awk 'BEGIN { OLD_DEV=""} {DEV=$1} ( DEV!=OLD_DEV ) {print $7 } { OLD_DEV=DEV }')"
rc=0
case ${0##*/} in
"btrfs_scrub.sh")
COMMAND=" /sbin/btrfs scrub start -B -c 3 -n 7 "
error_msg="btrfs scrub encountered some errors"
success_msg="btrfs scrub finished successfully"
;;
"btrfs_device_stats.sh")
COMMAND=" /sbin/btrfs device stats -c "
error_msg="detected device errors"
success_msg="btrfs device stats detected no errors"
;;
"ceph_status_stats.sh")
COMMAND=" ceph status "
error_msg="Something is wrong with CPEH"
success_msg="command returned correct error code"
;;
"btrfs_trim.sh")
COMMAND="/sbin/fstrim"
error_msg="Something is wrong with fstrim"
success_msg="command returned correct error code"
;;
*)
echo "wrong filename"
echo "$0"
echo "available modes:"
echo " btrfs_device_stats.sh"
echo " btrfs_trim.sh"
echo " btrfs_scrub.sh"
exit 1
esac
if [ "$btrfs_FSs" = "" ] ;then
#empty
$VERBOSE && echo "no btrfs filesystems found"
exit 0
fi
for x in $btrfs_FSs ; do
$VERBOSE && echo && echo "== running on $x filesystem =="
out="$( $COMMAND $x )"
ec=$?
if [ $ec != 0 ] ;then
echo "ERROR command returned non-zero exit code $ec"
echo "$error_msg"
echo "$out"
rc=1
else
if $VERBOSE ; then
echo "$success_msg"
echo "$out"
fi
fi
done
exit $rc