mirror of
https://github.com/Antynea/grub-btrfs.git
synced 2026-03-04 13:05:00 +08:00
* Readme updated * localization no longer supported * New systemd service. * 41_snapshots-btrfs, ahead updated * Makefile added
12 lines
608 B
Desktop File
12 lines
608 B
Desktop File
[Unit]
|
|
Description=Regenerate grub-btrfs.cfg
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
# Set the possible paths for `grub-mkconfig`
|
|
Environment="PATH=/sbin:/bin:/usr/sbin:/usr/bin"
|
|
# Load environment variables from the configuration
|
|
EnvironmentFile=/etc/grub.d/41_snapshots-btrfs_config
|
|
# Regenerate just '/boot/grub/grub-btrfs.cfg' if it exists and is not empty, else regenerate the whole grub menu
|
|
ExecStart=/bin/bash -c 'if [ -s "/boot/${GRUB_BTRFS_DIRNAME:-grub}/grub-btrfs.cfg" ]; then /etc/grub.d/41_snapshots-btrfs; else ${GRUB_BTRFS_MKCONFIG:-/usr/bin/grub-mkconfig} -o /boot/${GRUB_BTRFS_DIRNAME:-grub}/grub.cfg; fi'
|