File: cryptsetup-run.postrm

package info (click to toggle)
cryptsetup 2%3A2.1.0-5%2Bdeb10u2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 15,944 kB
  • sloc: ansic: 39,100; sh: 10,547; xml: 762; makefile: 287; perl: 76
file content (15 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

set -e

case "$1" in
    remove)
	for file in cryptdisks_start cryptdisks_stop; do
		if [ -L /usr/sbin/$file ]; then
			rm /usr/sbin/$file
		fi
	done
    ;;
esac

#DEBHELPER#