cleaned syscalls

This commit is contained in:
2026-02-21 15:06:54 -05:00
parent aad7efd055
commit d026cfbb03

View File

@@ -607,19 +607,19 @@ function auth.elevate(targetUsername, password)
end end
if kernel.syscalls then if kernel.syscalls then
kernel.syscalls["auth_login"] = auth.login kernel.syscalls["login"] = auth.login
kernel.syscalls["auth_setpassword"] = auth.setPassword kernel.syscalls["setpassword"] = auth.setPassword
kernel.syscalls["auth_setusername"] = auth.setUsername kernel.syscalls["setusername"] = auth.setUsername
kernel.syscalls["auth_newuser"] = auth.newUser kernel.syscalls["newuser"] = auth.newUser
kernel.syscalls["auth_whoami"] = auth.whoami kernel.syscalls["whoami"] = auth.whoami
kernel.syscalls["auth_getuid"] = auth.getUID kernel.syscalls["getuid"] = auth.getUID
kernel.syscalls["auth_getpasswd"] = auth.getPasswd kernel.syscalls["getpasswd"] = auth.getPasswd
kernel.syscalls["auth_elevate"] = auth.elevate kernel.syscalls["elevate"] = auth.elevate
kernel.syscalls["auth_deleteuser"] = auth.deleteUser kernel.syscalls["deleteuser"] = auth.deleteUser
kernel.syscalls["auth_lockuser"] = auth.lockUser kernel.syscalls["lockuser"] = auth.lockUser
kernel.syscalls["auth_unlockuser"] = auth.unlockUser kernel.syscalls["unlockuser"] = auth.unlockUser
kernel.syscalls["auth_listusers"] = auth.listUsers kernel.syscalls["listusers"] = auth.listUsers
kernel.syscalls["auth_setshell"] = auth.setShell kernel.syscalls["setshell"] = auth.setShell
kernel.syscalls["auth_sethomedir"] = auth.setHomedir kernel.syscalls["sethomedir"] = auth.setHomedir
kernel.syscalls["auth_setgid"] = auth.setGID kernel.syscalls["setgid"] = auth.setGID
end end