[SCM] ci-tooling packaging branch, master, updated. 10e589528f4ff5ff8ccf9b95d913f128394f2ce0

Harald Sitter apachelogger-guest at moszumanska.debian.org
Thu Apr 30 10:22:10 UTC 2015


Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=10e5895

The following commit has been merged in the master branch:
commit 10e589528f4ff5ff8ccf9b95d913f128394f2ce0
Author: Harald Sitter <sitter at kde.org>
Date:   Thu Apr 30 12:22:05 2015 +0200

    also disable manpage updates on install tests
---
 kci/install_check.rb | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/kci/install_check.rb b/kci/install_check.rb
index 81f79be..0e9b52c 100755
--- a/kci/install_check.rb
+++ b/kci/install_check.rb
@@ -3,6 +3,7 @@
 require 'fileutils'
 require 'logger'
 require 'logger/colors'
+require 'open3'
 
 require_relative 'lib/lp'
 require_relative 'lib/retry'
@@ -193,6 +194,13 @@ system('apt-get install wamerican')
 # to use the cache (which ought not happen as part of the test) or through the
 # cron (which also ought not happen as there is no crond).
 FileUtils.mkpath('/var/lib/apt-xapian-index')
+# Disable manpage database updates
+Open3.popen3('debconf-set-selections') do |stdin, _stdout, stderr, wait_thr|
+  stdin.puts('man-db man-db/auto-update boolean false')
+  stdin.close
+  wait_thr.join
+  puts stderr.read
+end
 
 daily_ppa = CiPPA.new("#{project.stability}-daily", project.series)
 live_ppa = CiPPA.new("#{project.stability}", project.series)

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list