diff --git a/find_snapper_config b/find_snapper_config deleted file mode 100755 index 746e741..0000000 --- a/find_snapper_config +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -etcdirs="sysconfig default conf.d" - -for x in $etcdirs; do - d=/etc/$x/snapper - if [ -f $d ]; then - sed -i 's@^SNAPPER_CONFIG=.*@SNAPPER_CONFIG='$d'@g' bin/dsnap-sync - exit 0 - fi -done - -printf "==> Unable to find snapper configuration file in a standard location.\n" -printf "==> Using SNAPPER_CONFIG make variable.\n" -exit 1