]> git.sesse.net Git - backup.sh/commitdiff
Remove strange backtick usage.
authorSteinar H. Gunderson <sesse@samfundet.no>
Sun, 5 Oct 2014 17:37:21 +0000 (19:37 +0200)
committerSteinar H. Gunderson <sesse@samfundet.no>
Sun, 5 Oct 2014 17:37:21 +0000 (19:37 +0200)
backup.sh

index b17ad65dffec7564860599e1f3c4e93614f85211..e6735c3fd94854d32997812978cef5f20bf859c1 100755 (executable)
--- a/backup.sh
+++ b/backup.sh
@@ -159,7 +159,7 @@ fi
 echo `date`" $computer: Backing up $computer" >&2
 
 # Try to SSH to the computer without entering a password.
-if ! `ssh -n -o NumberOfPasswordPrompts=0 root@$computer /bin/true`; then
+if ! ssh -n -o NumberOfPasswordPrompts=0 root@$computer /bin/true; then
        diemsg "Could not use passwordless SSH."
 fi