aad6fa6d19
This will ease running shellcheck from the repository.
19 lines
459 B
Bash
Executable File
19 lines
459 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Source Qubes library.
|
|
# shellcheck source=init/functions
|
|
. /usr/lib/qubes/init/functions
|
|
|
|
set -e
|
|
|
|
/usr/lib/qubes/init/setup-rwdev.sh
|
|
if [ -e /dev/xvdb ] ; then mount /rw ; fi
|
|
/usr/lib/qubes/init/setup-rw.sh
|
|
|
|
initialize_home "/rw/home" ifneeded
|
|
echo "Mounting /rw/home onto /home" >&2
|
|
mount /home
|
|
# https://github.com/QubesOS/qubes-issues/issues/1328#issuecomment-169483029
|
|
# Do none of the following in a DispVM.
|
|
/usr/lib/qubes/init/bind-dirs.sh
|