in reply to Out of memory - FRONTIER DAEMON
mmmh... this command line for example seems malformed
system("screen -A -m -d -S c".$loginftp." cp -r".$katalogins." /home/srv".$loginftp."/");That's better probably:
system("screen -A -m -d -S c".$loginftp."; cp -r".$katalogins." /home/srv".$loginftp."/");And even better probably will be to use the equivalent perl commands to remove, delete user, add user, kill, copy, grep, tail, cd... so you could use warnings and check the errors
what's the purpose of things like this?
system("useradd -d /home/srv".$loginftp."/ ".$loginftp.""); $pw = new Unix::PasswdFile "/etc/passwd";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Out of memory - FRONTIER DAEMON
by Anonymous Monk on Nov 04, 2011 at 14:43 UTC | |
by pvaldes (Chaplain) on Nov 04, 2011 at 17:33 UTC |