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
+21
View File
@@ -0,0 +1,21 @@
#!/usr/local/bin/perl
# Start or stop Bacula at boot
require './bacula-backup-lib.pl';
&ReadParse();
&foreign_require("init", "init-lib.pl");
if ($in{'boot'}) {
foreach $p (@bacula_inits) {
&init::enable_at_boot($p);
}
&webmin_log("bootup");
}
else {
foreach $p (@bacula_inits) {
&init::disable_at_boot($p);
}
&webmin_log("bootdown");
}
&redirect("");