From d469036a9fe5a849060159383be2ff6249c51a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 22 Sep 2012 04:21:42 -0300 Subject: Keep the synced database on a permanent dir --- update-cleansystem | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'update-cleansystem') diff --git a/update-cleansystem b/update-cleansystem index 97c2922..b55e882 100755 --- a/update-cleansystem +++ b/update-cleansystem @@ -3,20 +3,21 @@ # Creates a fake Parabola root and prints all packages installable from base # and base-devel plus extras -set -E +set -e if [ ! -w / ]; then echo "Run as root." exit 1 fi -tmpdir=/tmp/cleansystem.${RANDOM} +# Maintain a clean database in the system +db_dir="${DB:-/var/lib/libretools/clean}" -mkdir -p ${tmpdir}/var/lib/pacman +[ ! -d "${db_dir}" ] && mkdir -p "${db_dir}" # We sync first because updating info gets printed to stdout too -pacman -r ${tmpdir} --config /etc/pacman.conf -Sy 2>/dev/null -pacman -r ${tmpdir} \ +pacman -b "${db_dir}" --config /etc/pacman.conf -Sy 2>/dev/null +pacman -b "${db_dir}" \ --config /etc/pacman.conf \ -Sp --print-format "%n" \ base base-devel sudo ${@} | sort > /etc/libretools.d/cleansystem -- cgit v1.2.3-2-g168b From df6d6b26c13ab6645e1f3bf683cc4537f1a18211 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Reynolds?= Date: Sat, 22 Sep 2012 20:17:02 -0300 Subject: Issue #195 - Install missing packages --- update-cleansystem | 2 ++ 1 file changed, 2 insertions(+) (limited to 'update-cleansystem') diff --git a/update-cleansystem b/update-cleansystem index b55e882..98eb0dc 100755 --- a/update-cleansystem +++ b/update-cleansystem @@ -22,4 +22,6 @@ pacman -b "${db_dir}" \ -Sp --print-format "%n" \ base base-devel sudo ${@} | sort > /etc/libretools.d/cleansystem +pacman -Sy --needed --noconfirm base base-devel sudo $@ + exit $? -- cgit v1.2.3-2-g168b From 5ae7257fca114a6174c070556745a40fe0ca4ff5 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 18 Jun 2012 01:56:55 -0400 Subject: Improve update-cleansystem --- update-cleansystem | 66 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 52 insertions(+), 14 deletions(-) (limited to 'update-cleansystem') diff --git a/update-cleansystem b/update-cleansystem index 97c2922..4ea6a24 100755 --- a/update-cleansystem +++ b/update-cleansystem @@ -1,24 +1,62 @@ #!/bin/bash # Updates the cleansystem file -# Creates a fake Parabola root and prints all packages installable from base -# and base-devel plus extras +# Creates a fake Parabola root and writes to cleansystem all +# packages installable from base and base-devel plus extras. -set -E +# Copyright 2012 Nicolás Reynolds, Luke Shumaker -if [ ! -w / ]; then - echo "Run as root." - exit 1 +# ---------- GNU General Public License 3 ---------- + +# This file is part of Parabola. + +# Parabola is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# Parabola is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with Parabola. If not, see . + +source /etc/libretools.conf + +cleansystem=/etc/libretools.d/cleansystem + +cmd=${0##*/} +usage() { + echo "Usage: $cmd []" + echo " $cmd -h" + echo "Creates a fake Parabola root and writes to \`$cleansystem' all" + echo "packages installable from base and base-devel plus extras." + echo '' + echo 'Options:' + echo ' -h Show this message' +} + +if [ "$1" == '-h' ]; then + usage + exit 0 fi -tmpdir=/tmp/cleansystem.${RANDOM} +if [ ! -w "$cleansystem" ]; then + error 'This script must be run as root' + exit 1 +fi -mkdir -p ${tmpdir}/var/lib/pacman +tmpdir="`mktemp -d --tmpdir cleansystem.XXXXXXXXXX`" +mkdir -p "${tmpdir}"/var/lib/pacman # We sync first because updating info gets printed to stdout too -pacman -r ${tmpdir} --config /etc/pacman.conf -Sy 2>/dev/null -pacman -r ${tmpdir} \ - --config /etc/pacman.conf \ - -Sp --print-format "%n" \ - base base-devel sudo ${@} | sort > /etc/libretools.d/cleansystem +pacman -r "${tmpdir}" --config /etc/pacman.conf -Sy 2>/dev/null +pacman -r "${tmpdir}" --config /etc/pacman.conf \ + -Sp --print-format "%n" \ + base base-devel sudo "$@" | sort > "$cleansystem" +exitcode=$? + +rm -rf "$tmpdir" -exit $? +exit $exitcode -- cgit v1.2.3-2-g168b From e9bc885c355babf7851de31db8e1920dde752993 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 7 Nov 2012 00:17:08 -0500 Subject: organize the files --- update-cleansystem | 68 ------------------------------------------------------ 1 file changed, 68 deletions(-) delete mode 100755 update-cleansystem (limited to 'update-cleansystem') diff --git a/update-cleansystem b/update-cleansystem deleted file mode 100755 index 6bec742..0000000 --- a/update-cleansystem +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/bash -# Updates the cleansystem file -# Creates a fake Parabola root and writes to cleansystem all -# packages installable from base and base-devel plus extras. - -set -e -# Copyright 2012 Nicolás Reynolds, Luke Shumaker - -# ---------- GNU General Public License 3 ---------- - -# This file is part of Parabola. - -# Parabola is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. - -# Parabola is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with Parabola. If not, see . - -set -e - -# libretools.conf gives us libremessages -source /etc/libretools.conf - -cleansystem=/etc/libretools.d/cleansystem - -cmd=${0##*/} -usage() { - echo "Usage: $cmd []" - echo " $cmd -h" - echo "Creates a fake Parabola root and writes to \`$cleansystem' all" - echo "packages installable from base and base-devel plus extras." - echo '' - echo 'Options:' - echo ' -h Show this message' -} - -if [ "$1" == '-h' ]; then - usage - exit 0 -fi - -if [ ! -w "$cleansystem" ]; then - error 'This script must be run as root' - exit 1 -fi - -# Maintain a clean database in the system -db_dir="${DB:-/var/lib/libretools/clean}" -[ ! -d "${db_dir}" ] && mkdir -p "${db_dir}" - -# We sync first because updating info gets printed to stdout too -pacman -b "${db_dir}" --config /etc/pacman.conf -Sy 2>/dev/null -pacman -b "${db_dir}" \ - --config /etc/pacman.conf \ - -Sp --print-format "%n" \ - base base-devel sudo $@ | sort > "$cleansystem" - -# Ensures everything's installed -pacman -Sy --needed --noconfirm base base-devel sudo $@ - -exit $? -- cgit v1.2.3-2-g168b