aboutsummaryrefslogtreecommitdiffstats
path: root/packages/qemuarm64-poky-linux/base-files/base-files/latest.pkg_preinst
blob: c573db4c0e3cd505611bd821855a899a5d362c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
set -e
    #!/bin/sh -e
    if [ x"$D" = "x" ]; then
        if [ -h "/var/lock" ]; then
            # Remove the symbolic link
            rm -f /var/lock
        fi

        if [ -h "/run" ]; then
            # Remove the symbolic link
            rm -f /run
        fi
    fi