summaryrefslogtreecommitdiff
path: root/src/core/libs/lib-ui-interactive.sh
diff options
context:
space:
mode:
authorDieter Plaetinck <dieter@plaetinck.be>2010-04-16 21:56:17 +0200
committerDieter Plaetinck <dieter@plaetinck.be>2010-04-16 21:56:17 +0200
commitaa0123794a6743408f0de9d1792bdb7cc2eda733 (patch)
tree96df3adb7491f1844d5f3bb83039d27828b69d45 /src/core/libs/lib-ui-interactive.sh
parenta17127c46d0a635b9af17a2ef20c3a44bb3797e1 (diff)
change infofy calls to inform, because libui-sh changed function name
Diffstat (limited to 'src/core/libs/lib-ui-interactive.sh')
-rw-r--r--src/core/libs/lib-ui-interactive.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/libs/lib-ui-interactive.sh b/src/core/libs/lib-ui-interactive.sh
index 5a3b848..15a752a 100644
--- a/src/core/libs/lib-ui-interactive.sh
+++ b/src/core/libs/lib-ui-interactive.sh
@@ -121,7 +121,7 @@ interactive_configure_system()
interactive_timezone () {
ask_timezone || return 1
TIMEZONE=$ANSWER_TIMEZONE
- infofy "Setting Timezone to $TIMEZONE"
+ inform "Setting Timezone to $TIMEZONE"
if [ -n "$TIMEZONE" -a -e "/usr/share/zoneinfo/$TIMEZONE" ]
then
# This changes probably also the systemtime (UTC->$TIMEZONE)!
@@ -154,7 +154,7 @@ interactive_time () {
"return" "Looks good. back to main menu" "${EXTRA[@]}" "manual" "Set time and date manually" || return 1
if [ "$ANSWER_OPTION" = ntp ]
then
- infofy "Syncing clock with internet pool ..."
+ inform "Syncing clock with internet pool ..."
if ntpdate pool.ntp.org >/dev/null
then
notify "Synced clock with internet pool successfully."
@@ -222,7 +222,7 @@ interactive_prepare_disks ()
then
if rollback_filesystems #TODO: this part doesn't belong here. move it to ui-interactive. (interactive_rollback)
then
- infofy "Rollback succeeded"
+ inform "Rollback succeeded"
else
show_warning "Rollback failed" "Rollback failed"
fi
@@ -811,7 +811,7 @@ interactive_runtime_network() {
if ask_yesno "Do you want to use DHCP?"
then
- infofy "Please wait. Polling for DHCP server on $INTERFACE..."
+ inform "Please wait. Polling for DHCP server on $INTERFACE..."
dhcpcd -k $INTERFACE >$LOG 2>&1
if ! dhcpcd $INTERFACE >$LOG 2>&1
then