File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 35
35
# ##########################################################
36
36
37
37
function system_update {
38
- aptitude update
38
+ apt-get update
39
+ apt-get -y install aptitude
39
40
aptitude -y full-upgrade
40
41
}
41
42
@@ -342,9 +343,9 @@ function wordpress_install {
342
343
do sed -i " 0,/put your unique phrase here/s/put your unique phrase here/$( randomString 50) /" wp-config.php
343
344
done
344
345
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
348
349
349
350
# http://downloads.wordpress.org/plugin/wp-super-cache.0.9.8.zip
350
351
}
@@ -369,7 +370,7 @@ function goodstuff {
369
370
function restartServices {
370
371
# restarts services that have a file in /tmp/needs-restart/
371
372
372
- for service in $( ls /tmp/restart-* | cut -d- -f2) ; do
373
+ for service in $( ls /tmp/restart-* | cut -d- -f2-10 ) ; do
373
374
/etc/init.d/$service restart
374
375
rm -f /tmp/restart-$service
375
376
done
@@ -382,4 +383,4 @@ function randomString {
382
383
fi
383
384
384
385
echo $( < /dev/urandom tr -dc A-Za-z0-9 | head -c $LEN ) # generate a random string
385
- }
386
+ }
You can’t perform that action at this time.
0 commit comments