FIX CRITIC: Escape backtick in Jupe section - rezolvă eroarea 'bad substitution' care lăsa ircd.conf gol
- Problema: Caracterul backtick (\) din linia 665 interferea cu heredoc bash - Bash interpreta backtick-ul ca command substitution neînchisă - Rezultat: sed primea input invalid și ircd.conf rămânea GOL - Soluție: Escape backtick cu backslash (\\\) - Verificat: bash -n install.sh trece cu succes Acum install.sh va genera corect fișierul ircd.conf!
This commit is contained in:
parent
f8501ad5b9
commit
dff9707dcd
|
|
@ -662,7 +662,7 @@ Client {
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
Jupe {
|
Jupe {
|
||||||
# Litere și caractere speciale
|
# Litere și caractere speciale
|
||||||
nick = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,{,|,},~,-,_,`";
|
nick = "A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,{,|,},~,-,_,\`";
|
||||||
nick = "EuWorld,UWorld,UWorld2,Defender";
|
nick = "EuWorld,UWorld,UWorld2,Defender";
|
||||||
nick = "login,underchat,protocol,pass,newpass,org";
|
nick = "login,underchat,protocol,pass,newpass,org";
|
||||||
nick = "LPT1,LPT2,COM1,COM2,COM3,COM4,AUX,AUTH";
|
nick = "LPT1,LPT2,COM1,COM2,COM3,COM4,AUX,AUTH";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue