]> git.saurik.com Git - apt.git/commitdiff
* merge from apt--mvo (fix resource leak, run apt.cron.daily only if
authorMichael Vogt <egon@bottom>
Mon, 15 Oct 2007 19:28:47 +0000 (21:28 +0200)
committerMichael Vogt <egon@bottom>
Mon, 15 Oct 2007 19:28:47 +0000 (21:28 +0200)
  apt-get check is successfull)

1  2 
apt-pkg/deb/dpkgpm.cc
debian/changelog

diff --combined apt-pkg/deb/dpkgpm.cc
index 4323b5fd2a35fb91783224f1c43c2d8afc144ab2,3235b0b068edf69ba1a76e0b0602eb335740f5e9..706abcb92c274cf9c9c846b6e222c959f0c200bc
@@@ -495,46 -495,6 +495,46 @@@ void pkgDPkgPM::DoDpkgStatusFd(int stat
  }
                                                                        /*}}}*/
  
 +bool pkgDPkgPM::OpenLog()
 +{
 +   string logdir = _config->FindDir("Dir::Log");
 +   if(not FileExists(logdir))
 +      return _error->Error(_("Directory '%s' missing"), logdir.c_str());
 +   string logfile_name = flCombine(logdir,
 +                                 _config->Find("Dir::Log::Terminal"));
 +   if (!logfile_name.empty())
 +   {
 +      term_out = fopen(logfile_name.c_str(),"a");
 +      chmod(logfile_name.c_str(), 0600);
 +      // output current time
 +      char outstr[200];
 +      time_t t = time(NULL);
 +      struct tm *tmp = localtime(&t);
 +      strftime(outstr, sizeof(outstr), "%F  %T", tmp);
 +      fprintf(term_out, "\nLog started: ");
 +      fprintf(term_out, outstr);
 +      fprintf(term_out, "\n");
 +   }
 +   return true;
 +}
 +
 +bool pkgDPkgPM::CloseLog()
 +{
 +   if(term_out)
 +   {
 +      char outstr[200];
 +      time_t t = time(NULL);
 +      struct tm *tmp = localtime(&t);
 +      strftime(outstr, sizeof(outstr), "%F  %T", tmp);
 +      fprintf(term_out, "Log ended: ");
 +      fprintf(term_out, outstr);
 +      fprintf(term_out, "\n");
 +      fclose(term_out);
 +   }
 +   term_out = NULL;
 +   return true;
 +}
 +
  
  // DPkgPM::Go - Run the sequence                                      /*{{{*/
  // ---------------------------------------------------------------------
@@@ -611,7 -571,24 +611,7 @@@ bool pkgDPkgPM::Go(int OutStatusFd
     }   
  
     // create log
 -   string logdir = _config->FindDir("Dir::Log");
 -   if(not FileExists(logdir))
 -      return _error->Error(_("Directory '%s' missing"), logdir.c_str());
 -   string logfile_name = flCombine(logdir,
 -                                 _config->Find("Dir::Log::Terminal"));
 -   if (!logfile_name.empty())
 -   {
 -      term_out = fopen(logfile_name.c_str(),"a");
 -      chmod(logfile_name.c_str(), 0600);
 -      // output current time
 -      char outstr[200];
 -      time_t t = time(NULL);
 -      struct tm *tmp = localtime(&t);
 -      strftime(outstr, sizeof(outstr), "%F  %T", tmp);
 -      fprintf(term_out, "\nLog started: ");
 -      fprintf(term_out, outstr);
 -      fprintf(term_out, "\n");
 -   }
 +   OpenLog();
  
     // this loop is runs once per operation
     for (vector<Item>::iterator I = List.begin(); I != List.end();)
         tv.tv_sec = 1;
         tv.tv_usec = 0;
         select_ret = select(max(master, _dpkgin)+1, &rfds, NULL, NULL, &tv);
 -       if (select_ret == 0) 
 -          continue;
 -       else if (select_ret < 0 && errno == EINTR)
 -          continue;
 -       else if (select_ret < 0) 
 -       {
 -          perror("select() returned error");
 -          continue;
 -       } 
 -       
 +       if (select_ret == 0) 
 +          continue;
 +       else if (select_ret < 0 && errno == EINTR)
 +          continue;
 +       else if (select_ret < 0) 
 +       {
 +          perror("select() returned error");
 +          continue;
 +       } 
 +
         if(master >= 0 && FD_ISSET(master, &rfds))
            DoTerminalPty(master);
         if(master >= 0 && FD_ISSET(0, &rfds))
        signal(SIGQUIT,old_SIGQUIT);
        signal(SIGINT,old_SIGINT);
  
-       if(master >= 0 && slave >= 0)
+       if(master >= 0) 
+       {
         tcsetattr(0, TCSAFLUSH, &tt);
+        close(master);
+       }
         
        // Check for an error code.
        if (WIFEXITED(Status) == 0 || WEXITSTATUS(Status) != 0)
  
         if(stopOnError) 
         {
 -          if(term_out)
 -             fclose(term_out);
 +          CloseLog();
            return false;
         }
        }      
     }
 -   if(term_out)
 -      fclose(term_out);
 +   CloseLog();
  
     if (RunScripts("DPkg::Post-Invoke") == false)
        return false;
diff --combined debian/changelog
index 98b57eb4542a87ccd00275da300e519b929815bb,e1f03735041917c1fded3eb98e50c43beab840a3..22e966f0f6bef82ef75cf871545f8882e64e3bba
@@@ -40,8 -40,8 +40,10 @@@ apt (0.7.7) UNRELEASED; urgency=lo
    * cmdline/apt-mark:
      - Fix chmoding after have renamed the extended-states file (LP: #140019)
        (thanks to Laurent Bigonville)
 +  * apt-pkg/depcache.cc:
 +    - set "APT::Install-Recommends" to true by default (OMG!)
+   * debian/apt.cron.daily:
+     - only run the cron job if apt-get check succeeds (LP: #131719)
    
    [ Program translations ]
      - French updated
@@@ -51,8 -51,6 +53,8 @@@
      - Vietnamese updated. Closes: #440611
      - Danish updated. Closes: #441102
      - Thai added. Closes: #442833
 +    - Swedish updated.
 +    - Galician updated. Closes: #446626
  
    [ Otavio Salvador ]
    * Add hash support to copy method. Thanks Anders Kaseorg by the patch
      - cmdline/apt-extracttemplates.cc: likewise;
      - apt-pkg/deb/debmetaindex.cc: comparison with string literal results
        in unspecified behaviour;
 +  * cmdline/apt-get.cc: adds 'autoremove' as a valid comment to usage
 +    statement of apt-get (closes: #445468).
 +  * cmdline/apt-get.cc: really applies Julien Danjou <acid@debian.org>
 +    patch to add 'purge' command line argument (closes: #133421).
  
    [ Ian Jackson ]
    * dpkg-triggers: Deal properly with new package states.
@@@ -85,7 -79,7 +87,7 @@@
    * apt-pkg/contrib/mmap.cc:
      - don't fail if msync() returns > 0
   
 - -- Otavio Salvador <otavio@debian.org>  Mon, 06 Aug 2007 10:44:53 -0300
 + -- Otavio Salvador <otavio@debian.org>  Sat, 06 Oct 2007 18:23:42 -0300
  
  apt (0.7.6) unstable; urgency=low