Skip to content

Commit 398bd94

Browse files
committed
Updated bash library to latest version.
1 parent f4a1593 commit 398bd94

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

1 - StackScript Bash Library.sh

+7-6
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535
###########################################################
3636

3737
function system_update {
38-
aptitude update
38+
apt-get update
39+
apt-get -y install aptitude
3940
aptitude -y full-upgrade
4041
}
4142

@@ -342,9 +343,9 @@ function wordpress_install {
342343
do sed -i "0,/put your unique phrase here/s/put your unique phrase here/$(randomString 50)/" wp-config.php
343344
done
344345

345-
sed -i 's/putyourdbnamehere/wordpress/' wp-config.php
346-
sed -i 's/usernamehere/wordpress/' wp-config.php
347-
sed -i "s/yourpasswordhere/$WPPASS/" wp-config.php
346+
sed -i 's/database_name_here/wordpress/' wp-config.php
347+
sed -i 's/username_here/wordpress/' wp-config.php
348+
sed -i "s/password_here/$WPPASS/" wp-config.php
348349

349350
# http://downloads.wordpress.org/plugin/wp-super-cache.0.9.8.zip
350351
}
@@ -369,7 +370,7 @@ function goodstuff {
369370
function restartServices {
370371
# restarts services that have a file in /tmp/needs-restart/
371372

372-
for service in $(ls /tmp/restart-* | cut -d- -f2); do
373+
for service in $(ls /tmp/restart-* | cut -d- -f2-10); do
373374
/etc/init.d/$service restart
374375
rm -f /tmp/restart-$service
375376
done
@@ -382,4 +383,4 @@ function randomString {
382383
fi
383384

384385
echo $(</dev/urandom tr -dc A-Za-z0-9 | head -c $LEN) # generate a random string
385-
}
386+
}

0 commit comments

Comments
 (0)