Ubuntu Pastebin

Paste from ogra at Mon, 18 Sep 2017 08:49:54 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
ogra@anubis:~/datengrab/pi3/pi3-gadget$ cat psplash/initrd/scripts/init-bottom/firstboot 
#!/bin/sh -e

PREREQS=""

prereqs() { echo "$PREREQS"; }

case "$1" in
    prereqs)
    prereqs
    exit 0
    ;;
esac

# check for /root/system-data/var/lib/snapd/state.json
# if it does not exist, we are in first boot and will
# generate keys and copy files around

[ -e "/root/writable/system-data/var/lib/snapd/state.json" ] || \
  /bin/psplash-write "MSG Doing first boot system initialization, please be patient..."
ogra@anubis:~/datengrab/pi3/pi3-gadget$ 
Download as text