Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
5e812ee0
Commit
5e812ee0
authored
Nov 20, 2013
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-5303 rpm post-inst scriptlet creates mysql user with a valid shell
create mysql user with /sbin/nologin shell
parent
98c60924
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
support-files/rpm/server-postin.sh
support-files/rpm/server-postin.sh
+2
-2
No files found.
support-files/rpm/server-postin.sh
View file @
5e812ee0
...
...
@@ -23,9 +23,9 @@ if [ $1 = 1 ] ; then
# Create a MySQL user and group. Do not report any problems if it already
# exists.
groupadd
-r
%
{
mysqld_group
}
2> /dev/null
||
true
useradd
-M
-r
-
d
$datadir
-s
/bin/bash
-c
"MySQL server"
-g
%
{
mysqld_group
}
%
{
mysqld_user
}
2> /dev/null
||
true
useradd
-M
-r
-
-home
$datadir
--shell
/sbin/nologin
--comment
"MySQL server"
--gid
%
{
mysqld_group
}
%
{
mysqld_user
}
2> /dev/null
||
true
# The user may already exist, make sure it has the proper group nevertheless (BUG#12823)
usermod
-
g
%
{
mysqld_group
}
%
{
mysqld_user
}
2> /dev/null
||
true
usermod
-
-gid
%
{
mysqld_group
}
%
{
mysqld_user
}
2> /dev/null
||
true
# Change permissions so that the user that will run the MySQL daemon
# owns all database files.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment