1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-04 13:13:13 +02:00

Remove confusing information regarding /TSCTL.

This commit is contained in:
Bram Matthys
2019-09-21 16:22:49 +02:00
parent 83492a613d
commit 330cf9ed24
8 changed files with 12 additions and 34 deletions
+2 -6
View File
@@ -1098,14 +1098,10 @@ help Close {
};
help Tsctl {
" This is a highly advanced command used to Adjust the";
" Internal IRC clock.";
" This will show the current clock";
" IRC Operator only command.";
" -";
" Syntax: TSCTL OFFSET +|- <time> (Adjust internal IRC clock)";
" TSCTL TIME (Will give TS report)";
" TSCTL ALLTIME (Shows the TS report of all server)";
" TSCTL SVSTIME <timestamp> (Sets the Time on all Servers)";
" Syntax: TSCTL ALLTIME (Shows the TS report of all server)";
};
help Svsnick {
+2 -5
View File
@@ -1126,13 +1126,10 @@ help Close {
};
help Tsctl {
" Dies ist ein erweiterter Befehl, um die interne IRC Uhrzeit anzupassen.";
" Uhrzeit aller Server anzeigen.";
" Befehl nur für IrcOps.";
" -";
" Syntax: TSCTL OFFSET +|- <time> (Stellt interne IRC Uhrzeit)";
" TSCTL TIME (Erzeugt einen Zeitstatus Bericht)";
" TSCTL ALLTIME (Zeigt den Zeitstatus aller Server)";
" TSCTL SVSTIME <timestamp> (Stellt die Uhrzeit auf allen Servern ein)";
" Syntax: TSCTL ALLTIME (Zeigt den Zeitstatus aller Server)";
};
help Svsnick {
+2 -6
View File
@@ -1115,14 +1115,10 @@ help Close {
};
help Tsctl {
" Ceci est une commande hautement avancée utilisée pour ajuster";
" l'horloge IRC interne.";
" Montre l'heure a tous les serveurs.";
" Commande réservée aux IRC Operateurs.";
" -";
" Syntaxe : TSCTL OFFSET +|- <heure> (ajuste l'horloge IRC interne)";
" TSCTL TIME (Donnera le rapport TS)";
" TSCTL ALLTIME (Montre le rapport TS des tous les serveurs)";
" TSCTL SVSTIME <timestamp> (Applique l'heure à tous les serveurs)";
" Syntaxe : TSCTL ALLTIME (Montre le rapport TS des tous les serveurs)";
};
help Svsnick {
+1 -5
View File
@@ -1042,13 +1042,9 @@ help Close {
};
help Tsctl {
" Questo è un comando avanzato utilizzato per correggere l'orologio interno di IRC.";
" Questa funzione è utilizzabile solo dagli Oper.";
" -";
" Sintassi: TSCTL OFFSET +|- <orario> (Modifica l'orologio interno di IRC)";
" TSCTL TIME (Restituisce il report TS)";
" TSCTL ALLTIME (Mostra il report TS di tutti i server)";
" TSCTL SVSTIME <timestamp> (Imposta l'orario di tutti i server)";
" Sintassi: TSCTL ALLTIME (Mostra il report TS di tutti i server)";
};
help Htm {
+1 -5
View File
@@ -1217,11 +1217,7 @@ help Tsctl {
" Команда позволяет управлять временем в IRC сети";
" Может использоваться только IRC операторами.";
" -";
" Синтаксис: TSCTL OFFSET +|- <time> (Настройка времени IRC)";
" TSCTL TIME (Покажет время)";
" TSCTL ALLTIME (Покажет время на всех серверах)";
" TSCTL SVSTIME <timestamp> (Установит время на всех";
" серверах)";
" Синтаксис: TSCTL ALLTIME (Покажет время на всех серверах)";
};
help Svsnick {
+1 -4
View File
@@ -1075,10 +1075,7 @@ help Tsctl {
" İleri düzey olan bu komut dahili irc saatini ayarlar.";
" Sadece IRCop'lar kullanabilir.";
" -";
" Kullanımı: TSCTL OFFSET +|- <zaman> (Dahili irc saatini ayarlar)";
" TSCTL TIME (Aktif saati gösterir)";
" TSCTL ALLTIME (Tüm serverın aktif saatini gösterir)";
" TSCTL SVSTIME <timestamp> (Tüm serverın saatini ayarlar)";
" Kullanımı: TSCTL ALLTIME (Tüm serverın aktif saatini gösterir)";
};
help Svsnick {
+2 -2
View File
@@ -1311,7 +1311,7 @@ void SocketLoop(void *dummy)
sendto_realops("WARNING: Time running backwards! Clock set back ~%lld seconds (%lld -> %lld)",
(long long)tdiff, (long long)oldtimeofday, (long long)timeofday);
sendto_realops("Incorrect time for IRC servers is a serious problem. "
"Time being set backwards (either by TSCTL or by resetting the clock) is "
"Time being set backwards (system clock changed) is "
"even more serious and can cause clients to freeze, channels to be "
"taken over, and other issues.");
sendto_realops("Please be sure your clock is always synchronized before "
@@ -1329,7 +1329,7 @@ void SocketLoop(void *dummy)
sendto_realops("WARNING: Time jumped ~%lld seconds ahead! (%lld -> %lld)",
(long long)tdiff, (long long)oldtimeofday, (long long)timeofday);
sendto_realops("Incorrect time for IRC servers is a serious problem. "
"Time being adjusted (either by TSCTL or by resetting the clock) "
"Time being adjusted (by changing the system clock) "
"more than a few seconds forward/backward can lead to serious issues.");
sendto_realops("Please be sure your clock is always synchronized before "
"the IRCd is started!");
+1 -1
View File
@@ -58,7 +58,7 @@ CMD_FUNC(cmd_tsctl)
if (MyUser(sptr) && (!parv[1] || strcasecmp(parv[1], "alltime")))
{
sendnotice(sptr, "/TSCTL now shows the time on all servers. You can now longer MODIFY the time.");
sendnotice(sptr, "/TSCTL now shows the time on all servers. You can no longer modify the time.");
parv[1] = "alltime";
}