Add mysql command to host
This commit is contained in:
parent
07ddb2220a
commit
141f9334f2
|
@ -90,6 +90,11 @@ define sunetdrive::db_type(
|
||||||
ok_criteria => ['exit_status=0','max_age=2d'],
|
ok_criteria => ['exit_status=0','max_age=2d'],
|
||||||
warn_criteria => ['exit_status=1','max_age=3d'],
|
warn_criteria => ['exit_status=1','max_age=3d'],
|
||||||
}
|
}
|
||||||
|
file { '/usr/local/bin/mysql':
|
||||||
|
ensure => present,
|
||||||
|
content => template('sunetdrive/mariadb/mysql.erb.sh'),
|
||||||
|
mode => '0744',
|
||||||
|
}
|
||||||
file { '/usr/local/bin/size-test':
|
file { '/usr/local/bin/size-test':
|
||||||
ensure => present,
|
ensure => present,
|
||||||
content => template('sunetdrive/mariadb/size-test.erb'),
|
content => template('sunetdrive/mariadb/size-test.erb'),
|
||||||
|
|
4
templates/mariadb/mysql.erb.sh
Normal file
4
templates/mariadb/mysql.erb.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
pw=$(yq -r '.services.db.environment[0]' /opt/mariadb/docker-compose.yml | awk -F '=' '{print $2}')
|
||||||
|
|
||||||
|
docker exec -ti mariadb_db_1 mysql -u root -p"${pw}" -e "${@}"
|
Loading…
Reference in a new issue