1
0

beforeinstall.sh 132 B

12345
  1. #!/bin/bash
  2. export USER="nobody"
  3. export GROUP="nogroup"
  4. getent passwd $USER || useradd $USER
  5. getent group $GROUP || groupadd $GROUP