r13: functions.sh:
authorDamir Dzeko <Damir.Dzeko@CARNet.hr>
Mon, 21 Mar 2005 10:38:56 +0000 (10:38 +0000)
committerDamir Dzeko <Damir.Dzeko@CARNet.hr>
Mon, 21 Mar 2005 10:38:56 +0000 (10:38 +0000)
- cp_safe_file_replace new-file target-file      (new function)
    * function places new-file in place of target-file preserving
      original modes (or just renames new-file to target-file)
- cp_check_and_sed:
    * utilizes this new cp_safe_file_replace function

functions.sh
test/test-file

index 13429de..e625d51 100644 (file)
@@ -163,10 +163,8 @@ cp_check_and_sed() {
     egrep -q "$s" "$i" || continue
     [ -h "$i" ]        && i=$(readlink -f "$i")
     sed "$sedcmd" "$i" > "$i.dpkg-tmp"
-    if ! cmp -s "$i" "$i.dpkg-tmp"; then
-      chown --reference "$i" "$i.dpkg-tmp"
-      chmod --reference "$i" "$i.dpkg-tmp"
-      mv "$i.dpkg-tmp" "$i"
+    if ! cmp -s "$i" "$i.dpkg-tmp" 2>&1 >/dev/null; then
+      cp_safe_file_replace "$i.dpkg-tmp" "$i"
     else
       rm "$i.dpkg-tmp"
     fi
@@ -220,3 +218,16 @@ ${CP_NOTICE}----------"
     sleep 1
   fi
 }
+
+# by ddzeko, Mon, 21 Mar 2005 11:31:59 +0100
+cp_safe_file_replace () {
+  [ "$CP_SCRIPT_DEBUG" ] && set -vx
+  local new old
+  new=$1
+  old=$2
+  if [ -e "$old" ]; then
+    chown --reference "$old" "$new"
+    chmod --reference "$old" "$new"
+  fi
+  mv "$new" "$old"
+}
index 1e6e4b7..be1b37b 100644 (file)
@@ -26,4 +26,4 @@ string after the package name
 
 # Begin update by CARNet package broken2
 
-It's the end of the file and guess what? This line does not end with \n
+It's the end of the file and guess what? This line does not end with \n
\ No newline at end of file