File: bootcd.postinst

package info (click to toggle)
bootcd 6.4
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 540 kB
  • sloc: sh: 1,914; makefile: 50
file content (24 lines) | stat: -rwxr-xr-x 613 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh

set -e

# Regenerate initramfs on upgrade
if [ "$1" = "configure" ]; then

  # We now install config to /usr/share/initramfs-tools instead of
  # /etc/initramfs-tools. This means we have to cleanup.
  # Do not forget .dpkg-old files.
  D=/etc/initramfs-tools
  for i in \
    $(find $D/hooks -name "bootcdinitramfshook*")  \
    $(find $D/scripts/init-top -name "runbootcdmodprobe*") \
    $(find $D/scripts/init-premount/ -name "runbootcdproberoot*")
  do
    mkdir -p /etc/bootcd/initramfs-tools.oldconfig
    mv $i /etc/bootcd/initramfs-tools.oldconfig
  done

  update-initramfs -u
fi

#DEBHELPER#