Skip to content
Snippets Groups Projects
Commit af1c095f authored by tbrehm's avatar tbrehm
Browse files

Changed min userid from 999 to 499 to better support redhat based distributions.

parent cf8190ff
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,7 @@ class shelluser_base_plugin { ...@@ -32,6 +32,7 @@ class shelluser_base_plugin {
var $plugin_name = 'shelluser_base_plugin'; var $plugin_name = 'shelluser_base_plugin';
var $class_name = 'shelluser_base_plugin'; var $class_name = 'shelluser_base_plugin';
var $min_uid = 499;
//* This function is called during ispconfig installation to determine //* This function is called during ispconfig installation to determine
// if a symlink shall be created for this plugin. // if a symlink shall be created for this plugin.
...@@ -73,7 +74,7 @@ class shelluser_base_plugin { ...@@ -73,7 +74,7 @@ class shelluser_base_plugin {
// Get the UID of the parent user // Get the UID of the parent user
$uid = intval($app->system->getuid($data['new']['puser'])); $uid = intval($app->system->getuid($data['new']['puser']));
if($uid > 999) { if($uid > $this->min_uid) {
$command = 'useradd'; $command = 'useradd';
$command .= ' --home '.escapeshellcmd($data['new']['dir']); $command .= ' --home '.escapeshellcmd($data['new']['dir']);
$command .= ' --gid '.escapeshellcmd($data['new']['pgroup']); $command .= ' --gid '.escapeshellcmd($data['new']['pgroup']);
...@@ -98,7 +99,7 @@ class shelluser_base_plugin { ...@@ -98,7 +99,7 @@ class shelluser_base_plugin {
// Get the UID of the parent user // Get the UID of the parent user
$uid = intval($app->system->getuid($data['new']['puser'])); $uid = intval($app->system->getuid($data['new']['puser']));
if($uid > 999) { if($uid > $this->min_uid) {
$command = 'usermod'; $command = 'usermod';
$command .= ' --home '.escapeshellcmd($data['new']['dir']); $command .= ' --home '.escapeshellcmd($data['new']['dir']);
$command .= ' --gid '.escapeshellcmd($data['new']['pgroup']); $command .= ' --gid '.escapeshellcmd($data['new']['pgroup']);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment