Shellcheck

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-12-06 22:12:51 -07:00
parent 76ae45e341
commit e4ca15dcc7
No known key found for this signature in database
GPG Key ID: D30DEC268D3FEB17
3 changed files with 13 additions and 7 deletions

View File

@ -1,12 +1,14 @@
#!/bin/bash
output(){
echo -e '\e[36m'$1'\e[0m';
echo -e '\e[36m'"$1"'\e[0m';
}
mariadb_root_reset(){
service mysql stop
mysqld_safe --skip-grant-tables >res 2>&1 &
sleep 5
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
rootpassword=$(/dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
Q1="UPDATE user SET plugin='';"
Q2="UPDATE user SET password=PASSWORD('$rootpassword') WHERE user='root';"
Q3="FLUSH PRIVILEGES;"

View File

@ -1,9 +1,11 @@
#!/bin/bash
output(){
echo -e '\e[36m'$1'\e[0m';
echo -e '\e[36m'"$1"'\e[0m';
}
mariadb_root_reset(){
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
rootpassword=$(/dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');"
Q2="FLUSH PRIVILEGES;"
SQL="${Q1}${Q2}"

View File

@ -1,9 +1,11 @@
#!/bin/bash
output(){
echo -e '\e[36m'$1'\e[0m';
echo -e '\e[36m'"$1"'\e[0m';
}
mariadb_root_reset(){
rootpassword=`cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1`
rootpassword=$(/dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
Q0="SET old_passwords=0;"
Q1="SET PASSWORD FOR root@localhost = PASSWORD('$rootpassword');"
Q2="FLUSH PRIVILEGES;"
@ -12,4 +14,4 @@ mariadb_root_reset(){
output "Your MariaDB root password is $rootpassword"
}
mariadb_root_reset
mariadb_root_reset