chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:12:17 +08:00
commit cf8edb9f21
44281 changed files with 1655134 additions and 0 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
#!/usr/local/bin/perl
# restart.cgi
# Kill all smbd and nmdb processes and re-start them
require './samba-lib.pl';
&error_setup("$text{'eacl_aviol'}ask_epass.cgi");
&error("$text{'eacl_np'} $text{'eacl_papply'}") unless $access{'apply'};
if ($config{'stop_cmd'}) {
&system_logged("$config{'stop_cmd'} >/dev/null 2>&1 </dev/null");
}
else {
@smbpids = &find_byname("smbd");
@nmbpids = &find_byname("nmbd");
&kill_logged('TERM', @smbpids, @nmbpids);
}
&webmin_log("stop");
&redirect("");