File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed
lib/puppet/provider/mysql_datadir Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 5
5
initvars
6
6
7
7
# Make sure we find mysqld on CentOS and mysql_install_db on Gentoo and Solaris 11
8
- ENV [ 'PATH' ] = ENV [ 'PATH' ] + ':/usr/libexec:/usr/share/mysql/scripts:/opt/rh/mysql55/root/usr/bin:/opt/rh/mysql55/root/usr/libexec:/usr/mysql/5.5/bin:/usr/mysql/5.6/bin:/usr/mysql/5.7/bin'
8
+ ENV [ 'PATH' ] = [
9
+ ENV [ 'PATH' ] ,
10
+ '/usr/libexec' ,
11
+ '/usr/share/mysql/scripts' ,
12
+ '/opt/rh/rh-mysql57/root/usr/bin' ,
13
+ '/opt/rh/rh-mysql57/root/usr/libexec' ,
14
+ '/opt/rh/rh-mysql56/root/usr/bin' ,
15
+ '/opt/rh/rh-mysql56/root/usr/libexec' ,
16
+ '/opt/rh/rh-mariadb101/root/usr/bin' ,
17
+ '/opt/rh/rh-mariadb101/root/usr/libexec' ,
18
+ '/opt/rh/rh-mariadb100/root/usr/bin' ,
19
+ '/opt/rh/rh-mariadb100/root/usr/libexec' ,
20
+ '/opt/rh/mysql55/root/usr/bin' ,
21
+ '/opt/rh/mysql55/root/usr/libexec' ,
22
+ '/opt/rh/mariadb55/root/usr/bin' ,
23
+ '/opt/rh/mariadb55/root/usr/libexec' ,
24
+ '/usr/mysql/5.5/bin' ,
25
+ '/usr/mysql/5.6/bin' ,
26
+ '/usr/mysql/5.7/bin' ,
27
+ ] . join ( ':' )
9
28
10
29
commands mysqld : 'mysqld'
11
30
optional_commands mysql_install_db : 'mysql_install_db'
You can’t perform that action at this time.
0 commit comments