summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2008-12-05 12:18:33 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2008-12-05 12:18:33 +0000
commite6b0b004f981659c88d451ab6eb8798acbf3a92a (patch)
tree6ee9377bf8513792f53fe5a766aa7c8d00b9dd86
parent81429060feb12052b47bd580b4e6a584fce5eee1 (diff)
downloadalpine-conf-e6b0b004f981659c88d451ab6eb8798acbf3a92a.tar.bz2
alpine-conf-e6b0b004f981659c88d451ab6eb8798acbf3a92a.tar.xz
setup-webconf: install acf-apk-tools by default.
and remove warning
-rw-r--r--setup-webconf22
1 files changed, 1 insertions, 21 deletions
diff --git a/setup-webconf b/setup-webconf
index fc34fca..6a4ca84 100644
--- a/setup-webconf
+++ b/setup-webconf
@@ -11,7 +11,7 @@ usage() {
exit 0;
}
-pkgs="acf-core acf-alpine-baselayout"
+pkgs="acf-core acf-alpine-baselayout acf-apk-tools"
while getopts "adhl:" opt ; do
case $opt in
@@ -29,26 +29,6 @@ while [ $# -gt 0 ]; do
shift
done
-if [ "$FORCE_SETUP_WEBCONF" != yes ]; then
- # issue warning so user knows what he is doing
- echo "!!!"
- echo "!!! WARNING !!! WARNING !!! WARNING !!!"
- echo "!!!"
- echo "!!! The webinterface is in alpha stage and will give *anyone* on the"
- echo "!!! network access to your box. The web interface is only for testing"
- echo "!!! purposes and should only be used in isolated secure networks."
- echo "!!!"
- echo "!!! Please send suggestions and patches to acf@lists.alpinelinux.org"
- echo "!!!"
-
- echon "Are you sure you want continue? (y/n) [n] "
- default_read imsure n
- if [ "$imsure" != y ]; then
- echo "Aborting."
- exit
- fi
-fi
-
# install packages
apk_add mini_httpd $pkgs || exit 1