Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #cloud-config
  2. password: foobar
  3. chpasswd: { expire: False }
  4. ssh_pwauth: True
  5.  
  6. packages:
  7. - trove-guestagent
  8. - mysql-server-5.6
  9.  
  10. # restart trove-guestagent as the config has been changed
  11. runcmd:
  12. - echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts
  13. - cat /etc/guest_info /etc/trove-guestagent.conf > /etc/trove/trove-guestagent.conf
  14. - chmod 750 /var/log/trove
  15. - echo "trove ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/90-trove
  16. - mysql -uroot -e "CREATE USER 'os_admin'@'localhost'"
  17. - mysql -uroot -e "GRANT ALL PRIVILEGES ON *.* TO 'os_admin'@'localhost' WITH GRANT OPTION"
  18. - mysql -uroot -e "DELETE FROM mysql.user WHERE host != 'localhost'"
  19. - mysql -uroot -e "FLUSH PRIVILEGES"
  20. - restart mysql
  21. - stop trove-guestagent
  22. - start trove-guestagent
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement