mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-07 17:52:46 +01:00
Setup Script - Fix the Trim
This commit is contained in:
@@ -321,8 +321,8 @@ minio_generate_keys() {
|
||||
|
||||
local charSet="[:graph:]"
|
||||
|
||||
ACCESS_KEY=$(cat /dev/urandom | tr -cd "$charSet" | head -c 20)
|
||||
ACCESS_SECRET=$(cat /dev/urandom | tr -cd "$charSet" | head -c 40)
|
||||
ACCESS_KEY=$(cat /dev/urandom | tr -cd "$charSet" | tr -d \' | tr -d \" | head -c 20)
|
||||
ACCESS_SECRET=$(cat /dev/urandom | tr -cd "$charSet" | tr -d \' | tr -d \" | head -c 40)
|
||||
|
||||
}
|
||||
node_pillar() {
|
||||
|
||||
Reference in New Issue
Block a user