diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-02 18:37:41 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-02 18:37:41 +0000 |
commit | 810a91de93fce580f6ecd6aa6e8a4432dd9a73da (patch) | |
tree | de477741f5eff9e330f6a9f0dd61cbc3ab3d8984 /sys-libs/nss-mysql/files | |
parent | Stable on alpha. (diff) | |
download | gentoo-2-810a91de93fce580f6ecd6aa6e8a4432dd9a73da.tar.gz gentoo-2-810a91de93fce580f6ecd6aa6e8a4432dd9a73da.tar.bz2 gentoo-2-810a91de93fce580f6ecd6aa6e8a4432dd9a73da.zip |
Remove nss-mysql. It is superseded by libnss-mysql.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-libs/nss-mysql/files')
4 files changed, 0 insertions, 54 deletions
diff --git a/sys-libs/nss-mysql/files/digest-nss-mysql-0.40 b/sys-libs/nss-mysql/files/digest-nss-mysql-0.40 deleted file mode 100644 index 3b5751708c73..000000000000 --- a/sys-libs/nss-mysql/files/digest-nss-mysql-0.40 +++ /dev/null @@ -1 +0,0 @@ -MD5 0d695d86a2adaea93c79578dfe6e309d nss-mysql-0.40.tar.gz 216701 diff --git a/sys-libs/nss-mysql/files/digest-nss-mysql-0.43 b/sys-libs/nss-mysql/files/digest-nss-mysql-0.43 deleted file mode 100644 index 6a2420404378..000000000000 --- a/sys-libs/nss-mysql/files/digest-nss-mysql-0.43 +++ /dev/null @@ -1 +0,0 @@ -MD5 1b3e62509dec0904142a06c58e9b9473 nss-mysql-0.43.tar.gz 209713 diff --git a/sys-libs/nss-mysql/files/digest-nss-mysql-0.43-r1 b/sys-libs/nss-mysql/files/digest-nss-mysql-0.43-r1 deleted file mode 100644 index 6a2420404378..000000000000 --- a/sys-libs/nss-mysql/files/digest-nss-mysql-0.43-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 1b3e62509dec0904142a06c58e9b9473 nss-mysql-0.43.tar.gz 209713 diff --git a/sys-libs/nss-mysql/files/gentoo.sql.nss-mysql-0.40.gentoo b/sys-libs/nss-mysql/files/gentoo.sql.nss-mysql-0.40.gentoo deleted file mode 100644 index 765e643ef010..000000000000 --- a/sys-libs/nss-mysql/files/gentoo.sql.nss-mysql-0.40.gentoo +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2002 Interhost ANS, Norway - www.interhost.no -# Distributed under the terms of the GNU General Public License, v2 or later -# Written for Portage by Christian Skarby (Interhost ANS, Norway) christian.skarby@interhost.no - -CREATE DATABASE IF NOT EXISTS nss_mysql; -USE nss_mysql; - -CREATE TABLE IF NOT EXISTS groups ( - group_id int(11) NOT NULL auto_increment primary key, - group_name varchar(30) DEFAULT '' NOT NULL, - status char(1) DEFAULT 'A', - group_password varchar(64) DEFAULT 'x' NOT NULL, - gid int(11) NOT NULL -); - -CREATE TABLE IF NOT EXISTS user_group ( - user_id int(11) DEFAULT '0' NOT NULL, - group_id int(11) DEFAULT '0' NOT NULL - ); - -CREATE TABLE IF NOT EXISTS user ( - user_id int(11) NOT NULL auto_increment primary key, - user_name varchar(50) DEFAULT '' NOT NULL, - realname varchar(32) DEFAULT '' NOT NULL, - shell varchar(20) DEFAULT '/bin/sh' NOT NULL, - password varchar(40) DEFAULT '' NOT NULL, - status char(1) DEFAULT 'N' NOT NULL, - uid int(11) NOT NULL, - gid int(11) DEFAULT '65534' NOT NULL, - homedir varchar(32) DEFAULT '/bin/sh' NOT NULL, - lastchange int(11), - min int(11), - max int(11), - warn int(11), - inact int(11), - expire int(11) - ); - -GRANT select(user_name,user_id,uid,gid,realname,shell,homedir,status) - on nss_mysql.user to nss@localhost identified by 'password'; -GRANT select(group_name,group_id,gid,group_password,status) - on nss_mysql.groups to nss@localhost identified by 'password'; -GRANT select(user_id,group_id) - on nss_mysql.user_group to nss@localhost identified by 'password'; -GRANT SELECT,INSERT,UPDATE,DELETE - on nss_mysql.user to 'nss-shadow'@localhost identified by 'another_password'; -GRANT SELECT,INSERT,UPDATE,DELETE - on nss_mysql.groups to 'nss-shadow'@localhost identified by 'another_password'; -GRANT SELECT,INSERT,UPDATE,DELETE - on nss_mysql.user_group to 'nss-shadow'@localhost identified by 'another_password'; -FLUSH PRIVILEGES; |