mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-14 06:38:28 +00:00
Imported using git-ubuntu import. Changelog parent: 82eb59481a00162dda3996611b39053230ed14b9 New changelog entries: [ Colin Watson ] * live-build/auto/config: Add configuration for new kubuntu-plasma5 flavour. [ James Hunt ] * ubuntu-core: Run setup hooks as done for ubuntu-touch.
13 lines
240 B
Bash
Executable File
13 lines
240 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
USER=ubuntu
|
|
UGID=1000
|
|
|
|
echo "I: creating default user $USER"
|
|
adduser --gecos $USER --disabled-login $USER --uid $UGID
|
|
|
|
echo "I: set user $USER password to $USER"
|
|
echo "$USER:$USER" | chpasswd
|
|
|
|
chown -R $UGID:$UGID /home/$USER
|