mirror of
https://gitlab.com/alemaire/image-specs.git
synced 2025-01-11 01:43:29 +00:00
9 lines
116 B
Bash
9 lines
116 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
adduser --gecos pi --disabled-password pi
|
||
|
adduser pi sudo
|
||
|
echo "pi:pi" | chpasswd
|
||
|
passwd -l root
|