#!/bin/sh
# SPDX-License-Identifier: GPL-3.0-or-later
# SPDX-FileCopyrightText: Michael Terry

FUSERMOUNT=$(/usr/local/libexec/deja-dup/deja-dup-find-fusermount)
if [ "$?" != "0" ]; then
  echo "fusermount not found"
  exit 1
fi

exec $FUSERMOUNT "$@"
