* apt-pkg/cdrom.cc:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Sun, 5 Aug 2012 12:16:24 +0000 (14:16 +0200)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Sun, 5 Aug 2012 12:16:24 +0000 (14:16 +0200)
  - do not link() but rename() the cdroms.list to cdroms.list~ as a backup
    to ensure that apt-cdrom can be run multiple times (Closes: #676302)

apt-pkg/cdrom.cc
debian/changelog

index 8462e82..699f66f 100644 (file)
@@ -413,8 +413,8 @@ bool pkgCdrom::WriteDatabase(Configuration &Cnf)
 
    Out.close();
 
-   if (FileExists(DFile) == true && link(DFile.c_str(),string(DFile + '~').c_str()) != 0)
-      return _error->Errno("link", "Failed to link %s to %s~", DFile.c_str(), DFile.c_str());
+   if (FileExists(DFile) == true)
+      rename(DFile.c_str(), string(DFile + '~').c_str());
    if (rename(NewFile.c_str(),DFile.c_str()) != 0)
       return _error->Errno("rename","Failed to rename %s.new to %s",
                           DFile.c_str(),DFile.c_str());
index 7092d81..3bed49e 100644 (file)
@@ -29,6 +29,9 @@ apt (0.9.7.4) UNRELEASED; urgency=low
   * apt-pkg/indexcopy.cc:
     - do not use atomic writing if the target is /dev/null as we don't want
       to replace it, not even automically. (Closes: #683410)
+  * apt-pkg/cdrom.cc:
+    - do not link() but rename() the cdroms.list to cdroms.list~ as a backup
+      to ensure that apt-cdrom can be run multiple times (Closes: #676302)
 
  -- David Kalnischkies <kalnischkies@gmail.com>  Wed, 18 Jul 2012 11:45:57 +0200