diff options
| author | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
|---|---|---|
| committer | emmett1 <emmett1.2iligrams@protonmail.com> | 2025-03-12 04:01:18 +0100 |
| commit | ddd8e1a8fab2ac39396282a7c09ddf6eca219613 (patch) | |
| tree | 12796519575126d60e06d02e9eab68856229cf58 /utils/mkiso.d/live_script.sh | |
| parent | b5a8a6c29e40f786ceb808c0b95f01c4251111d1 (diff) | |
| download | alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.tar.gz alicelinux-ddd8e1a8fab2ac39396282a7c09ddf6eca219613.zip | |
clang repos updated
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 |