mirror of
https://git.bashclub.org/bashclub/zamba-lxc-toolbox.git
synced 2025-07-26 05:34:36 +02:00
Integrated shellcheck changes by @fbartels
This commit is contained in:
parent
bc2640c6dd
commit
5b01d9b1c7
21 changed files with 73 additions and 48 deletions
8
src/functions.sh
Normal file
8
src/functions.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# This script has basic functions like a random password generator
|
||||
|
||||
random_password() {
|
||||
set +o pipefail
|
||||
C_CTYPE=C tr -dc 'a-zA-Z0-9' < /dev/urandom | head -c32
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue