From 78ee1c72c670a71bfd165448676fc65bff802916 Mon Sep 17 00:00:00 2001 From: gramanas Date: Mon, 19 Nov 2018 19:11:06 +0200 Subject: Add ability to use ck without secret dir --- test/05_restore | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 test/05_restore (limited to 'test/05_restore') diff --git a/test/05_restore b/test/05_restore deleted file mode 100644 index 2d60cb9..0000000 --- a/test/05_restore +++ /dev/null @@ -1,46 +0,0 @@ -#!/bin/bash - -init restore - -# setup test configs -path1=$BIN/test1.conf -path2=$BIN/test2.conf -path3=$BIN/test3.conf -path4=$BIN/test4.conf - -add_config prog1 $path1 -add_config prog1 $path2 - -add_config prog2 $path3 -add_config prog2 $path4 - -# delete prog1 links -rm "$path1" "$path2" - -# restore them -exec $BIN/ck -c $BIN restore -p prog1 >&${V} & -wait $! - -for i in $($BIN/ck -c $BIN list -p prog1); do - if [[ ! -L "$i" ]]; then - err "Couldn't restore path $i" - exit 1 - fi -done - -## delete all links -rm "$path1" "$path2" "$path3" "$path4" - -# restore all -exec $BIN/ck -c $BIN restore all >&${V} & -wait $! - -for i in $($BIN/ck -c $BIN list paths); do - if [[ ! -L "$i" ]]; then - err "Couldn't restore path $i" - exit 1 - fi -done - -clear_tests -echo -e $PASS -- cgit v1.2.3