5 lines
89 B
Bash
5 lines
89 B
Bash
#!/usr/bin/env bash
|
|
|
|
if getent group docker; then
|
|
sudo usermod -a -G docker bascht
|
|
fi;
|