diff options
| author | intrigeri <intrigeri@boum.org> | 2014-05-03 14:08:04 +0000 |
|---|---|---|
| committer | intrigeri <intrigeri@boum.org> | 2014-05-03 14:08:04 +0000 |
| commit | 9b37f756f54f41247d398879bffb6983de53af66 (patch) | |
| tree | 1252102b1624efda76238813328e03d8e2759e51 | |
| parent | e91b1080f4719a08a69f07412580ec9c3a34b79d (diff) | |
| download | backupninja-9b37f756f54f41247d398879bffb6983de53af66.tar.gz backupninja-9b37f756f54f41247d398879bffb6983de53af66.tar.bz2 | |
Exclude tmpfs filesystems from df output in the sys handler (Closes: Debian#745818).
| -rw-r--r-- | handlers/sys.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/handlers/sys.in b/handlers/sys.in index ae86f17..1d47977 100644 --- a/handlers/sys.in +++ b/handlers/sys.in @@ -303,7 +303,7 @@ STATUS="Checking available memory:" catifexec "/usr/bin/free" STATUS="Checking free disk space:" -catifexec "/bin/df" "-al" +catifexec "/bin/df" "-al --exclude-type=tmpfs" STATUS="Collecting what services run at what run level:" if [ $os = "redhat" ]; then |
