Dzahn has submitted this change and it was merged. Change subject: Add sqlite3 and pixz utilities on html dumps host ......................................................................
Add sqlite3 and pixz utilities on html dumps host - The sqlite3 commandline tool is useful to inspect dump databases / verify correctness. - pixz is used for multi-threaded lzma compression Change-Id: I9ca5273261e08c4f75d1ec46747303b75c2337b1 --- M modules/dumps/manifests/zim.pp 1 file changed, 10 insertions(+), 2 deletions(-) Approvals: jenkins-bot: Verified Dzahn: Looks good to me, approved diff --git a/modules/dumps/manifests/zim.pp b/modules/dumps/manifests/zim.pp index a9b8408..f7e1be4 100644 --- a/modules/dumps/manifests/zim.pp +++ b/modules/dumps/manifests/zim.pp @@ -1,11 +1,19 @@ # ZIM dumps - https://en.wikipedia.org/wiki/ZIM_%28file_format%29 class dumps::zim { - package { 'imagemagick': + # imagemagick for ZIM dumps + # pixz for multi-threaded lzma compression + package { [ 'imagemagick', 'pixz' ]: ensure => present, } - package { [ 'nodejs', 'nodejs-legacy', 'libsqlite3-0' ]: + # nodejs-legacy is a symlink to /usr/bin/node + package { [ 'nodejs', 'nodejs-legacy' ]: + ensure => present, + } + + # SQLite 3 shared library and cmdline interface + package { [ 'sqlite3', 'libsqlite3-0' ]: ensure => present, } -- To view, visit https://gerrit.wikimedia.org/r/204684 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: I9ca5273261e08c4f75d1ec46747303b75c2337b1 Gerrit-PatchSet: 3 Gerrit-Project: operations/puppet Gerrit-Branch: production Gerrit-Owner: GWicke <[email protected]> Gerrit-Reviewer: ArielGlenn <[email protected]> Gerrit-Reviewer: Dzahn <[email protected]> Gerrit-Reviewer: jenkins-bot <> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
