diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-24 15:40:32 +0000 |
| commit | dea2a1fa20fc8e843cd85e5920a67b9054d00b2e (patch) | |
| tree | f331ff92dc5fd26f5803b483a24a0a21fd9bb97a /utils/mkiso.d/live_script.sh | |
| parent | ef5bfeb93345a5a681d88e99775622bf28defd8d (diff) | |
| download | alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.tar.gz alicelinux-dea2a1fa20fc8e843cd85e5920a67b9054d00b2e.zip | |
Woodpecker CI ef5bfeb93345a5a681d88e99775622bf28defd8d [SKIP CI]
Diffstat (limited to 'utils/mkiso.d/live_script.sh')
| -rw-r--r-- | utils/mkiso.d/live_script.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/utils/mkiso.d/live_script.sh b/utils/mkiso.d/live_script.sh deleted file mode 100644 index bb470dc1..00000000 --- a/utils/mkiso.d/live_script.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -LIVEUSER=live -PASSWORD=live -LIVEHOSTNAME=alicelive - -adduser -D $LIVEUSER -for g in users wheel audio video input; do - addgroup $LIVEUSER $g -done - -passwd -d $LIVEUSER >/dev/null 2>&1 -passwd -d root >/dev/null 2>&1 - -echo "root:root" | chpasswd -c SHA512 -echo "$LIVEUSER:$PASSWORD" | chpasswd -c SHA512 - -for sv in tty1 tty2 tty3 seatd; do - [ -d /etc/sv/$sv ] && ln -s /etc/sv/$sv /var/service -done - -echo $LIVEHOSTNAME > /etc/hostname - -if [ -f /etc/doas.conf ]; then - echo "permit nopass $LIVEUSER" >> /etc/doas.conf -fi |