forked from pool/grub2
950c565c10
1 OBS-URL: https://build.opensuse.org/request/show/253483 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/grub2?expand=0&rev=102
11 lines
224 B
Bash
11 lines
224 B
Bash
#! /bin/sh
|
|
set -e
|
|
if [ "x${SUSE_BTRFS_SNAPSHOT_BOOTING}" = "xtrue" ] &&
|
|
[ "x${GRUB_FS}" = "xbtrfs" ] ; then
|
|
cat <<EOF
|
|
if [ -f "/.snapshots/grub-snapshot.cfg" ]; then
|
|
source "/.snapshots/grub-snapshot.cfg"
|
|
fi
|
|
EOF
|
|
fi
|