#!/bin/bash
#
# Simple script to provide a "login" type prompt where it allows access.
# Used for non-RP guests only where console has no external access.
#
# Copyright (c) 2016-2017 by Cisco Systems, Inc.
#

read -p "Password: " -s 
unset REPLY
echo
exec -a -bash /bin/bash 
