beforeinstall.sh 131 B

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