RHEL 7 : Script random root

Este este script foi escrito para que eu possa criar um root aleatório .

echo "Changing root password..."
      openssl rand 16 -base64 | passwd --stdin root &>/dev/null
      echo "Adjusting boot menu timeout..."
      sed -i 's/set timeout[[:space:]]*=.*$/set timeout=5/' /boot/grub2/grub.cfg &> /dev/null
      sed -i '/linux16/s/$/ console=tty1/' /boot/grub2/grub.cfg &> /dev/null
      echo "Rebooting your system in 5 seconds..."
      print_SUCCESS
      sleep 5
      systemctl reboot
      ;;

 

Translate »