Sha256: d9a44bdb4a71383b426fa7984d7c4ab8725556c17821200c72244f4477b43e15

Contents?: true

Size: 471 Bytes

Versions: 14

Compression:

Stored size: 471 Bytes

Contents

$mysql_root_pw = 'password'

class { 'mysql::server':
  config_hash => {
    root_password => 'password',
  }
}

database_user{ 'redmine@localhost':
  ensure        => present,
  password_hash => mysql_password('redmine'),
  require       => Class['mysql::server'],
}

database_user{ 'dan@localhost':
  ensure        => present,
  password_hash => mysql_password('blah')
}

database_user{ 'dan@%':
  ensure        => present,
  password_hash => mysql_password('blah'),
}

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/mysql/tests/mysql_user.pp
freighthop-0.6.0 modules/mysql/tests/mysql_user.pp
freighthop-0.5.2 modules/mysql/tests/mysql_user.pp
freighthop-0.5.1 modules/mysql/tests/mysql_user.pp
freighthop-0.5.0 modules/mysql/tests/mysql_user.pp
freighthop-0.4.1 modules/mysql/tests/mysql_user.pp
freighthop-0.4.0 modules/mysql/tests/mysql_user.pp
freighthop-0.3.3 modules/mysql/tests/mysql_user.pp
freighthop-0.3.2 modules/mysql/tests/mysql_user.pp
freighthop-0.3.1 modules/mysql/tests/mysql_user.pp
freighthop-0.3.0 modules/mysql/tests/mysql_user.pp
freighthop-0.2.1 modules/mysql/tests/mysql_user.pp
freighthop-0.2.0 modules/mysql/tests/mysql_user.pp
freighthop-0.1.0 modules/mysql/tests/mysql_user.pp