Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用此模块删除 Puppetlabs MYSQL 数据库?
我尝试使用数据库的名称并确保 => 'absent' 但没有运气。
有人可以告诉我我做错了什么吗?
PS:我可以使用这个模块创建数据库。
我终于找到了解决这个问题的方法:
mysql_database { 'mysql': ensure => 'absent', charset => 'latin1', }
希望这会有所帮助:)