Commit 348d91c95f000c9cc79238e5701b8a8a07153e3a

Authored by Alexis Gavoty
1 parent 3eccc7aef2
Exists in master

Update install

Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff

... ... @@ -16,6 +16,9 @@ if [[ ! $? -eq 0 ]]; then
16 16 exit 1
17 17 fi
18 18  
  19 +# Install dependencies
  20 +sudo apt-get install acl
  21 +
19 22 # Generate random password
20 23 db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
21 24