From 2b8d0731a147206fd3e43937e1058a86a5164f67 Mon Sep 17 00:00:00 2001
From: Steven Armstrong <steven@icarus.ethz.ch>
Date: Fri, 22 Jul 2011 00:42:12 +0200
Subject: [PATCH] ignore nonexistent files when deleting

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
---
 conf/type/__link/gencode-remote | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/conf/type/__link/gencode-remote b/conf/type/__link/gencode-remote
index 3bfa90d8..bb43de2e 100755
--- a/conf/type/__link/gencode-remote
+++ b/conf/type/__link/gencode-remote
@@ -45,7 +45,7 @@ case "$state_should" in
       echo ln ${lnopt} -f \"$source\" \"$destination\"
    ;;
    absent)
-      echo rm \"$destination\"
+      echo rm -f \"$destination\"
    ;;
    *)
       echo "Unknown state" >&2