diff options
author | Jeremy A. Puhlman <jpuhlman@mvista.com> | 2020-02-18 13:55:22 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-02-18 18:17:20 -0800 |
commit | c90be40eb9f4028368ab5030e7f9a78d05707572 (patch) | |
tree | c2cc38c1bc057e9395643a1766d4bd7dec987650 /meta-oe/recipes-dbs | |
parent | 140846ddc57d00f20128c76c631a7bd7a4ffefaf (diff) | |
download | meta-openembedded-c90be40eb9f4028368ab5030e7f9a78d05707572.tar.gz |
mariadb: Add pam_auth to server package.
When pam is enabled, the pam plugin in pulled into the
server package but not the auth tool which results in
following error on boot:
Starting to install database for mariadb
chown: cannot access '/usr/lib/plugin/auth_pam_tool_dir': No such file
or directory
Cannot change ownership of the '/usr/lib/plugin/auth_pam_tool_dir'
directory
to the 'mysql' user. Check that you have the necessary permissions and
try again.
Signed-off-by: Jeremy A. Puhlman <jpuhlman@mvista.com>
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-dbs')
-rw-r--r-- | meta-oe/recipes-dbs/mysql/mariadb.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-dbs/mysql/mariadb.inc b/meta-oe/recipes-dbs/mysql/mariadb.inc index 23de69dd2..6888c64e3 100644 --- a/meta-oe/recipes-dbs/mysql/mariadb.inc +++ b/meta-oe/recipes-dbs/mysql/mariadb.inc | |||
@@ -299,6 +299,7 @@ FILES_${PN}-server = "\ | |||
299 | ${sbindir}/ndbd \ | 299 | ${sbindir}/ndbd \ |
300 | ${sbindir}/ndb_mgmd \ | 300 | ${sbindir}/ndb_mgmd \ |
301 | ${libdir}/plugin/*.so \ | 301 | ${libdir}/plugin/*.so \ |
302 | ${libdir}/plugin/auth_pam_tool_dir/auth_pam_tool \ | ||
302 | ${datadir}/mysql/ \ | 303 | ${datadir}/mysql/ \ |
303 | ${localstatedir}/mysql/ \ | 304 | ${localstatedir}/mysql/ \ |
304 | ${sysconfdir}/init.d/mysqld \ | 305 | ${sysconfdir}/init.d/mysqld \ |