Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #cloud-config
- password: foobar
- chpasswd: { expire: False }
- ssh_pwauth: True
- packages:
- - trove-guestagent
- - mysql-server-5.6
- # restart trove-guestagent as the config has been changed
- runcmd:
- - echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts
- - cat /etc/guest_info /etc/trove-guestagent.conf > /etc/trove/trove-guestagent.conf
- - chmod 750 /var/log/trove
- - echo "trove ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-trove
- - mysql -uroot -e "CREATE USER 'os_admin'@'localhost'"
- - mysql -uroot -e "GRANT ALL PRIVILEGES ON *.* TO 'os_admin'@'localhost' WITH GRANT OPTION"
- - mysql -uroot -e "DELETE FROM mysql.user WHERE host != 'localhost'"
- - mysql -uroot -e "FLUSH PRIVILEGES"
- - restart mysql
- - stop trove-guestagent
- - start trove-guestagent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement