You've already forked ansible-role-common
8 lines
100 B
Bash
8 lines
100 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if getent group "wheel" | grep -qw "$(whoami)"; then
|
||
|
|
echo true
|
||
|
|
else
|
||
|
|
echo false
|
||
|
|
fi;
|