aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDubiousjim <dubiousjim@gmail.com>2013-07-01 17:14:14 -0400
committerNatanael Copa <ncopa@alpinelinux.org>2013-07-03 07:42:53 +0000
commit4954634c054758d170777500a3ac1a2d7e0d6191 (patch)
tree23ed43f4abda9c11ce263476383be490638ecbab
parentc8f5f53d2e9f578bc6abaf4d86f8b37eda9950d7 (diff)
downloadalpine-conf-4954634c054758d170777500a3ac1a2d7e0d6191.tar.bz2
alpine-conf-4954634c054758d170777500a3ac1a2d7e0d6191.tar.xz
various: use long-form apk options
-rw-r--r--libalpine.sh.in8
-rwxr-xr-xsetup-apkrepos.in8
-rw-r--r--setup-bootable.in4
-rw-r--r--setup-disk.in6
-rwxr-xr-xsetup-interfaces.in2
-rwxr-xr-xsetup-keymap.in6
-rwxr-xr-xsetup-ntp.in2
-rwxr-xr-xsetup-timezone.in6
-rw-r--r--setup-xen-dom0.in2
9 files changed, 22 insertions, 22 deletions
diff --git a/libalpine.sh.in b/libalpine.sh.in
index cbd87c5..adfacb6 100644
--- a/libalpine.sh.in
+++ b/libalpine.sh.in
@@ -52,13 +52,13 @@ init_tmpdir() {
}
pkg_inst() {
- eecho "warning: pkg_inst is deprecated. Use 'apk add -q' in script"
- [ -z "$NOCOMMIT" ] && apk add -q $*
+ eecho "warning: pkg_inst is deprecated. Use 'apk add --quiet' in script"
+ [ -z "$NOCOMMIT" ] && apk add --quiet $*
}
pkg_deinst() {
- eecho "warning: pkg_deinst is deprecated. Use 'apk del -q' in script"
- [ -z "$NOCOMMIT" ] && apk del -q $*
+ eecho "warning: pkg_deinst is deprecated. Use 'apk del --quiet' in script"
+ [ -z "$NOCOMMIT" ] && apk del --quiet $*
}
default_read() {
diff --git a/setup-apkrepos.in b/setup-apkrepos.in
index ab48471..8cb940f 100755
--- a/setup-apkrepos.in
+++ b/setup-apkrepos.in
@@ -154,8 +154,8 @@ done
# main
# install alpine-mirrors if its not already there
to_uninstall=
-if ! apk info -q -e alpine-mirrors; then
- apk add -q alpine-mirrors
+if ! apk info --quiet --installed alpine-mirrors; then
+ apk add --quiet alpine-mirrors
to_uninstall=alpine-mirrors
fi
@@ -199,10 +199,10 @@ done
if [ -n "$changed" ]; then
echo -n "Updating repository indexes... "
- apk update -q && echo "done."
+ apk update --quiet && echo "done."
fi
# clean up
if [ -n "$to_uninstall" ]; then
- apk del -q alpine-mirrors
+ apk del --quiet alpine-mirrors
fi
diff --git a/setup-bootable.in b/setup-bootable.in
index 2c16bc5..f1d48b2 100644
--- a/setup-bootable.in
+++ b/setup-bootable.in
@@ -7,7 +7,7 @@ cleanup() {
local i=
cd /
if [ -n "$uninstalls" ]; then
- apk del -q syslinux
+ apk del --quiet syslinux
fi
sync
sleep 1
@@ -274,7 +274,7 @@ fi
echo "Making $dest bootable..."
if ! [ -x "$(which syslinux)" ]; then
- apk add -q syslinux || die "Failed to install syslinux"
+ apk add --quiet syslinux || die "Failed to install syslinux"
uninstalls="syslinux"
fi
diff --git a/setup-disk.in b/setup-disk.in
index 366ccdc..d3a4500 100644
--- a/setup-disk.in
+++ b/setup-disk.in
@@ -110,7 +110,7 @@ unpack_apkovl() {
return 0
fi
- apk add -q openssl
+ apk add --quiet openssl
if ! openssl list-cipher-commands | grep "^$suffix$" > /dev/null; then
errstr="Cipher $suffix is not supported"
@@ -387,7 +387,7 @@ stop_all_raid() {
init_progs() {
local raidpkg=
[ -n "$USE_RAID" ] && raidpkg="mdadm"
- apk add -q sfdisk e2fsprogs lvm2 $raidpkg syslinux $@
+ apk add --quiet sfdisk e2fsprogs lvm2 $raidpkg syslinux $@
}
show_disk_info() {
@@ -875,7 +875,7 @@ shift $(( $OPTIND - 1))
if [ -d "$1" ]; then
# install to given mounted root
- apk add -q syslinux
+ apk add --quiet syslinux
install_mounted_root "${1%/}" \
&& echo "You might need fix the MBR to be able to boot" >&2
exit $?
diff --git a/setup-interfaces.in b/setup-interfaces.in
index 54d861a..93ba427 100755
--- a/setup-interfaces.in
+++ b/setup-interfaces.in
@@ -468,7 +468,7 @@ prompt_for_interfaces() {
fi
if [ -n "$PKGS" ]; then
- apk add -q $PKGS
+ apk add --quiet $PKGS
fi
mkdir -p $ROOT/etc/network
diff --git a/setup-keymap.in b/setup-keymap.in
index cf0b81e..faa68b5 100755
--- a/setup-keymap.in
+++ b/setup-keymap.in
@@ -73,15 +73,15 @@ select_variant() {
goodbye() {
if [ $was_installed -ne 0 ]; then
- apk del -q bkeymaps
+ apk del --quiet bkeymaps
fi
exit $1
}
-apk info -eq bkeymaps
+apk info --quiet --installed bkeymaps
was_installed=$?
-apk add -q bkeymaps
+apk add --quiet bkeymaps
deflayout="$1"
defvariant="$2"
diff --git a/setup-ntp.in b/setup-ntp.in
index 5f56f13..38887ce 100755
--- a/setup-ntp.in
+++ b/setup-ntp.in
@@ -46,7 +46,7 @@ openntpd)
;;
esac
-apk add -q $pkgs
+apk add --quiet $pkgs
rc-update add $svc default
rc-service $svc start
diff --git a/setup-timezone.in b/setup-timezone.in
index 3caf0f5..41d4f16 100755
--- a/setup-timezone.in
+++ b/setup-timezone.in
@@ -51,8 +51,8 @@ while getopts "hp:z:" opt; do
esac
done
-if ! apk info -q -e tzdata; then
- apk add -q tzdata && apkdel="tzdata" || exit 1
+if ! apk info --quiet --installed tzdata; then
+ apk add --quiet tzdata && apkdel="tzdata" || exit 1
fi
zonepath=$(cat /etc/TZ 2>/dev/null)
@@ -105,6 +105,6 @@ while true; do
done
if [ -n "$apkdel" ]; then
- apk del -q $apkdel
+ apk del --quiet $apkdel
fi
diff --git a/setup-xen-dom0.in b/setup-xen-dom0.in
index 0e7b3b3..a4dc965 100644
--- a/setup-xen-dom0.in
+++ b/setup-xen-dom0.in
@@ -10,7 +10,7 @@ for mod in xen_netback xen_blkback xenfs xen_pciback xen_wdt tun; do
done
# install packages
-apk add -q xen
+apk add --quiet xen
# setup and start services
for svc in xenstored xenconsoled xenqemu; do