Browse Source

Text changes

Georgi Chorbadzhiyski 19 years ago
parent
commit
d068e16d57
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      update_script.sh

+ 5
- 5
update_script.sh View File

@@ -63,7 +63,7 @@ if [ "$SIG_CHECK" == "1" ]; then
63 63
 	if [ $? != 0 ]; then
64 64
 		echo "*** You don't have the public key of 'security@slackware.com'"
65 65
 		echo "*** Digital signatures can not be verified"
66
-		echo "*** Download slackware's public key from here:"
66
+		echo "*** Get slackware's public key from here:"
67 67
 		echo "*** http://www.slackware.com/gpg-key"
68 68
 		echo "*** After obtaining the key, execute 'gpg --import gpg-key'"
69 69
 		echo
@@ -91,7 +91,7 @@ pkg_upgrade() {
91 91
 mkdir ${REMOTE_DIR} 2>/dev/null
92 92
 
93 93
 (
94
-	# Download, verify and update packages
94
+	# Get, verify and update packages
95 95
 	set -e # Halt on any error
96 96
 	cd ${REMOTE_DIR}
97 97
 	if [ "$MD5_CHECK" == "1" ]; then
@@ -100,14 +100,14 @@ mkdir ${REMOTE_DIR} 2>/dev/null
100 100
 		fi
101 101
 	fi
102 102
 
103
-	echo "===> Downloading packages..."
103
+	echo "===> Getting packages..."
104 104
 	for PKG in $UPDATE; do
105 105
 		pkgfile=`basename $PKG`
106 106
 		if [ ! -f $pkgfile ]; then
107
-			echo "   - Downloading $PKG"
107
+			echo "   - Getting $PKG"
108 108
 			$DL_PRG $DL_PRG_OPTS ${DL_HOST}/$PKG
109 109
 		else
110
-			echo " -> $pkgfile already exists."
110
+			echo "  -> $pkgfile already exists."
111 111
 		fi
112 112
 		if [ "$SIG_CHECK" == "1" ]; then
113 113
 			if [ ! -f $pkgfile.asc ]; then

Loading…
Cancel
Save