diff options
-rwxr-xr-x | share/provision/trashman | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/share/provision/trashman b/share/provision/trashman index dc1ea63..b1f7bc5 100755 --- a/share/provision/trashman +++ b/share/provision/trashman @@ -26,6 +26,12 @@ APT_INSTALL="sudo LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y" # Install requirements $APT_INSTALL git rsync +# Get trashman +if [ -d "/usr/local/share/trashman" ]; then + ( cd /usr/local/share/trashman && sudo git pull ) +else + sudo git clone https://git.fluxo.info/trashman /usr/local/share/trashman +fi + # Install trashman -sudo git clone https://git.fluxo.info/trashman /usr/local/share/trashman sudo /usr/local/share/trashman/trashman install trashman |