diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 16:00:09 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 16:00:09 -0300 |
commit | bb356fb2f9de3991e4dfe04409d27d348f69ac66 (patch) | |
tree | 82dba036948c6f971935eb99fc2583585334f46c /update-cleansystem | |
parent | 7389eee3207cf2e06b6392cac3cdbe622d284df7 (diff) | |
parent | aae1b41ea2644da980a1645ee9e27dfe7560ec2e (diff) |
Merge branch 'master' into tokyo
Conflicts:
update-cleansystem
Diffstat (limited to 'update-cleansystem')
-rwxr-xr-x | update-cleansystem | 43 |
1 files changed, 38 insertions, 5 deletions
diff --git a/update-cleansystem b/update-cleansystem index 98eb0dc..53d21d9 100755 --- a/update-cleansystem +++ b/update-cleansystem @@ -1,13 +1,46 @@ #!/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 <http://www.gnu.org/licenses/>. + +source /etc/libretools.conf + +cleansystem=/etc/libretools.d/cleansystem + +cmd=${0##*/} +usage() { + echo "Usage: $cmd [<EXTRA_PACKAGES>]" + 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 # Maintain a clean database in the system |