diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:25:08 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2025-06-03 14:25:08 +0000 |
| commit | ac02af34e6938758c236ee87e99a65e9d7318c43 (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /utils/mkiso.d/live_script.sh | |
| parent | 495bfcc4011c3eb286cb5e4d57aef27af6b8751e (diff) | |
| download | alicelinux-ac02af34e6938758c236ee87e99a65e9d7318c43.tar.gz alicelinux-ac02af34e6938758c236ee87e99a65e9d7318c43.zip | |
Woodpecker CI 495bfcc4011c3eb286cb5e4d57aef27af6b8751e [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 |