Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

17 righe
384 B

  1. #!/bin/bash
  2. gen_key() {
  3. # Check for secret key if one doesn't exist create.
  4. if [ ! -f /data/production_secret_key.txt ]
  5. then
  6. cd /data
  7. PRODUCTION_SECRET_KEY=`pwgen -c -n -1 65`
  8. echo $PRODUCTION_SECRET_KEY > /data/production_secret_key.txt
  9. else
  10. PRODUCTION_SECRET_KEY=`cat /data/production_secret_key.txt`
  11. fi
  12. echo ${PRODUCTION_SECRET_KEY}
  13. }
  14. gen_key