diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-21 15:34:34 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-06-21 15:34:34 +0000 |
commit | 6249dbff7fa7b86a1fc32d6305c842d8f6e26679 (patch) | |
tree | 89aba3c1c1551ce2c36449d6c19c970db2fd0254 /liveinst | |
parent | Removed adpix (diff) | |
download | anaconda-6249dbff7fa7b86a1fc32d6305c842d8f6e26679.tar.gz anaconda-6249dbff7fa7b86a1fc32d6305c842d8f6e26679.tar.bz2 anaconda-6249dbff7fa7b86a1fc32d6305c842d8f6e26679.zip |
Automated customisations
Diffstat (limited to 'liveinst')
-rwxr-xr-x | liveinst/liveinst | 2 | ||||
-rwxr-xr-x | liveinst/liveinst-update | 6 | ||||
-rw-r--r-- | liveinst/liveinst-update-quick | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/liveinst/liveinst b/liveinst/liveinst index 1f9e24d..486a0ef 100755 --- a/liveinst/liveinst +++ b/liveinst/liveinst @@ -105,7 +105,7 @@ setup_vbox /etc/init.d/NetworkManager start -if [ -x /usr/bin/udisks ] && [ -z "${SABAYON_DEBUG}" ]; then +if [ -x /usr/bin/udisks ] && [ -z "${GENTOO_DEBUG}" ]; then /usr/bin/udisks --inhibit -- $ANACONDA $* else $ANACONDA $* diff --git a/liveinst/liveinst-update b/liveinst/liveinst-update index 41829e1..3376877 100755 --- a/liveinst/liveinst-update +++ b/liveinst/liveinst-update @@ -1,15 +1,15 @@ #!/bin/sh _fetch_ver="5" -[[ -f "/etc/sabayon-edition" ]] && _fetch_ver=$(cat /etc/sabayon-edition | cut -d" " -f 3) +[[ -f "/etc/gentoo-edition" ]] && _fetch_ver=$(cat /etc/gentoo-edition | cut -d" " -f 3) FETCH_VER=${FETCH_VER:-${_fetch_ver}} FETCH_FN="anaconda-${FETCH_VER}-$(uname -m).tar.bz2" -FETCH_URL=${FETCH_URL:-"http://www.sabayon.org/sabayon/installer/${FETCH_FN}"} +FETCH_URL=${FETCH_URL:-"http://www.gentoo.org/gentoo/installer/${FETCH_FN}"} cd /tmp rm -rf "/tmp/${FETCH_FN}"* -echo "Fetching Sabayon Anaconda Installer from ${FETCH_URL}..." +echo "Fetching Gentoo Anaconda Installer from ${FETCH_URL}..." wget ${FETCH_WGET_ARGS} "${FETCH_URL}" "${FETCH_URL}.md5" if [ "${?}" = "0" ]; then md5sum -c "${FETCH_FN}.md5" || ( echo "OUCH, md5 does not match" && exit 1 ) diff --git a/liveinst/liveinst-update-quick b/liveinst/liveinst-update-quick index 863076e..138dec6 100644 --- a/liveinst/liveinst-update-quick +++ b/liveinst/liveinst-update-quick @@ -1,15 +1,15 @@ #!/bin/sh _fetch_ver="5" -[[ -f "/etc/sabayon-edition" ]] && _fetch_ver=$(cat /etc/sabayon-edition | cut -d" " -f 3) +[[ -f "/etc/gentoo-edition" ]] && _fetch_ver=$(cat /etc/gentoo-edition | cut -d" " -f 3) FETCH_VER=${FETCH_VER:-${_fetch_ver}} FETCH_FN="pyanaconda-${FETCH_VER}.tar.bz2" -FETCH_URL=${FETCH_URL:-"http://www.sabayon.org/sabayon/installer/${FETCH_FN}"} +FETCH_URL=${FETCH_URL:-"http://www.gentoo.org/gentoo/installer/${FETCH_FN}"} cd /tmp rm -rf "/tmp/${FETCH_FN}"* -echo "Fetching Sabayon Anaconda Installer from ${FETCH_URL}..." +echo "Fetching Gentoo Anaconda Installer from ${FETCH_URL}..." wget ${FETCH_WGET_ARGS} "${FETCH_URL}" "${FETCH_URL}.md5" if [ "${?}" = "0" ]; then md5sum -c "${FETCH_FN}.md5" || ( echo "OUCH, md5 does not match" && exit 1 ) |