mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 12:47:30 +00:00
14 lines
171 B
Bash
Executable File
14 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# create hostfs entry
|
|
|
|
set -ex
|
|
|
|
echo "I: Adding var/lib/snapd/hostfs"
|
|
|
|
PREFIX=binary/boot/filesystem.dir
|
|
|
|
(cd $PREFIX
|
|
install -m755 -d var/lib/snapd/hostfs
|
|
)
|