mirror of
https://github.com/outbackdingo/debos.git
synced 2026-01-28 02:18:45 +00:00
To allow for more examples to be merged in future, move the debian-ospack example into its own directory. Signed-off-by: Christopher Obbard <christopher.obbard@linaro.org>
11 lines
162 B
Bash
Executable File
11 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
echo "I: create user"
|
|
adduser --gecos User --disabled-password user
|
|
|
|
echo "I: set user password"
|
|
echo "user:user" | chpasswd
|
|
adduser user sudo
|