12 lines
154 B
Bash
Executable file
12 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
# Add the stack user we recommend folk use.
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
useradd -G admin -m stack -s /bin/bash
|
|
passwd stack <<EOF
|
|
stack
|
|
stack
|
|
EOF
|
|
|