Files
chromebrew/packages/mysql.rb
2023-04-19 11:28:07 -04:00

73 lines
2.8 KiB
Ruby

require 'package'
class Mysql < Package
description "MySQL Community Edition is a freely downloadable version of the world's most popular open source database"
homepage 'https://www.mysql.com/'
version '8.0.33'
license 'GPL-2'
compatibility 'x86_64'
source_url 'https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.33-linux-glibc2.12-x86_64.tar.xz'
source_sha256 '4900c972a508d5b2f6d28bb9c51cf45906b6746d616d978f3996fbf2ca59467f'
depends_on 'numactl'
no_fhs
no_compile_needed
def self.install
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/bash.d"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/mysql"
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share"
FileUtils.mv 'man/', "#{CREW_DEST_PREFIX}/share"
FileUtils.mv Dir['*'], "#{CREW_DEST_PREFIX}/mysql"
Dir["#{CREW_DEST_PREFIX}/mysql/bin/*"].map do |f|
f.sub!(CREW_DEST_DIR.to_s, '')
FileUtils.ln_s f, "#{CREW_DEST_PREFIX}/bin/"
end
FileUtils.ln_s "#{CREW_PREFIX}/mysql/support-files/mysql.server", "#{CREW_DEST_PREFIX}/bin/mysql.server"
FileUtils.ln_s "#{CREW_PREFIX}/mysql/support-files/mysql_multi.server", "#{CREW_DEST_PREFIX}/bin/mysql_multi.server"
File.write "#{CREW_DEST_PREFIX}/etc/bash.d/01-mysql", <<~EOF
[ -x #{CREW_PREFIX}/bin/mysql.server ] && #{CREW_PREFIX}/bin/mysql.server start
EOF
end
def self.postinstall
system "mysqld --initialize-insecure --user=#{USER}" unless Dir.exist? "#{CREW_PREFIX}/mysql/data"
puts
puts 'WARNING: This is an insecure install without a root password!'.orange
puts
puts 'To lockdown permissions, execute the following:'.orange
puts 'mysql_secure_installation'.orange
puts
puts 'To reset the root password, see https://dev.mysql.com/doc/refman/8.0/en/resetting-permissions.html#resetting-permissions-unix.'.lightblue
puts
puts 'To start/stop mysqld, execute the following:'.lightblue
puts 'mysql.server start'.lightblue
puts 'mysql.server stop'.lightblue
puts
puts 'mysql.server start will execute on login.'.lightblue
puts "To prevent this, edit or remove #{CREW_PREFIX}/etc/bash.d/01-mysql.".lightblue
puts
puts "Databases are stored in #{CREW_PREFIX}/mysql/data.".lightblue
puts
puts 'MySQL Server documentation: https://dev.mysql.com/doc/refman/8.0/en/'.lightblue
puts
end
def self.remove
data_dir = "#{CREW_PREFIX}/mysql"
if Dir.exist? data_dir.to_s
puts "\nWARNING: This will delete all your databases!".orange
print "Would you like to remove #{data_dir}? [y/N] "
case $stdin.gets.chomp.downcase
when 'y', 'yes'
FileUtils.rm_rf data_dir.to_s
puts "#{data_dir} removed.".lightgreen
else
puts "#{data_dir} saved.".lightgreen
end
end
end
end