This commit is contained in:
teddys48
2025-10-08 16:59:38 +07:00
parent c23b0f211b
commit 08c8783d45

View File

@@ -43,21 +43,85 @@ cron.schedule(
}
);
cron.schedule("* * * * *", async () => {
cron.schedule(
"5-59 14 * * *",
async () => {
exec("sh /home/script/script.sh", (error, stdout, stderr) => {
if (error) {
console.error(`Gagal menjalankan script: ${error.message}`);
console.error(
`Gagal menjalankan script Antrisimatupang : ${error.message}`
);
return;
}
if (stderr) {
console.error(`Stderr: ${stderr}`);
console.error(`Stderr Antrisimatupang : ${stderr}`);
return;
}
console.log(`Output: ${stdout}`);
console.log(`Output Antrisimatupang: ${stdout}`);
});
});
exec("sh /home/script/script2.sh", (error, stdout, stderr) => {
if (error) {
console.error(
`Gagal menjalankan script antributikemas : ${error.message}`
);
return;
}
if (stderr) {
console.error(`Stderr antributikemas : ${stderr}`);
return;
}
console.log(`Output antributikemas: ${stdout}`);
});
},
{
timezone: "Asia/Jakarta",
}
);
cron.schedule(
"0-5 15 * * *",
async () => {
exec("sh /home/script/script.sh", (error, stdout, stderr) => {
if (error) {
console.error(
`Gagal menjalankan script antrisimatupang: ${error.message}`
);
return;
}
if (stderr) {
console.error(`Stderr antrisimatupang: ${stderr}`);
return;
}
console.log(`Output antrisimatupang : ${stdout}`);
});
exec("sh /home/script/script2.sh", (error, stdout, stderr) => {
if (error) {
console.error(
`Gagal menjalankan script antributikemas: ${error.message}`
);
return;
}
if (stderr) {
console.error(`Stderr antributikemas : ${stderr}`);
return;
}
console.log(`Output antributikemas : ${stdout}`);
});
},
{
timezone: "Asia/Jakarta",
}
);
app.use((req, res) => {
res.json("What are you looking for?!");