This repository has been archived on 2024-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
setup/roles/system/facts/login_shell.fact

6 lines
112 B
Text
Raw Normal View History

#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
LOGINSHELL=`getent passwd $USER | cut -d: -f7`
echo \"${LOGINSHELL}\"