Now switches to the user/group that owns the executable on startup.
This commit is contained in:
parent
acfb1eebf7
commit
c91a1c93cb
|
@ -337,6 +337,23 @@ Begin
|
||||||
SwitchFocus;
|
SwitchFocus;
|
||||||
End;
|
End;
|
||||||
|
|
||||||
|
{$IFDEF UNIX}
|
||||||
|
Procedure SetUserOwner;
|
||||||
|
Var
|
||||||
|
Info : Stat;
|
||||||
|
MysLoc : String;
|
||||||
|
Begin
|
||||||
|
MysLoc := GetEnv('mysticbbs');
|
||||||
|
|
||||||
|
If MysLoc <> '' Then MysLoc := DirSlash(MysLoc);
|
||||||
|
|
||||||
|
If fpStat(MysLoc + 'mis', Info) = 0 Then Begin
|
||||||
|
fpSetGID (Info.st_GID);
|
||||||
|
fpSetUID (Info.st_UID);
|
||||||
|
End;
|
||||||
|
End;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
Function ServerStartup : Boolean;
|
Function ServerStartup : Boolean;
|
||||||
Begin
|
Begin
|
||||||
Result := False;
|
Result := False;
|
||||||
|
@ -393,6 +410,10 @@ Begin
|
||||||
|
|
||||||
Result := True;
|
Result := True;
|
||||||
End;
|
End;
|
||||||
|
|
||||||
|
{$IFDEF UNIX}
|
||||||
|
SetUserOwner;
|
||||||
|
{$ENDIF}
|
||||||
End;
|
End;
|
||||||
|
|
||||||
{$IFDEF UNIX}
|
{$IFDEF UNIX}
|
||||||
|
|
|
@ -182,7 +182,13 @@ Procedure Linux_Init;
|
||||||
Var
|
Var
|
||||||
Count : Word;
|
Count : Word;
|
||||||
TChat : ChatRec;
|
TChat : ChatRec;
|
||||||
|
Info : Stat;
|
||||||
Begin
|
Begin
|
||||||
|
If fpStat('mystic', Info) = 0 Then Begin
|
||||||
|
fpSetGID (Info.st_GID);
|
||||||
|
fpSetUID (Info.st_UID);
|
||||||
|
End;
|
||||||
|
|
||||||
Session.NodeNum := 0;
|
Session.NodeNum := 0;
|
||||||
|
|
||||||
For Count := 1 to Config.INetTNNodes Do Begin
|
For Count := 1 to Config.INetTNNodes Do Begin
|
||||||
|
|
Loading…
Reference in New Issue