10 lines
157 B
Plaintext
10 lines
157 B
Plaintext
|
#!/bin/bash
|
||
|
# Do an apt-get clean. This will free some space.
|
||
|
|
||
|
set -eu
|
||
|
set -o pipefail
|
||
|
|
||
|
if ! mount | grep /var/cache/apt/archives; then
|
||
|
apt-get clean
|
||
|
fi
|