#!/bin/sh

# This will generate the initial password for the admin user
# of the web interface.

head -c12 /dev/urandom | base64 | head -c16 | tr '/+' '_-'
echo
