clanModules: fix shellcheck errors

This commit is contained in:
RTUnreal
2025-04-09 12:43:29 +02:00
committed by Qubasa
parent ee5957d8ee
commit aad1c347d1
7 changed files with 22 additions and 22 deletions

View File

@@ -22,8 +22,8 @@
pkgs.openssl
];
script = ''
openssl rand -base64 -out $out/admin_token 32
openssl rand -base64 -out $out/metrics_token 32
openssl rand -base64 -out "$out"/admin_token 32
openssl rand -base64 -out "$out"/metrics_token 32
'';
};
@@ -35,7 +35,7 @@
pkgs.openssl
];
script = ''
openssl rand -hex -out $out/rpc_secret 32
openssl rand -hex -out "$out"/rpc_secret 32
'';
};