File: tzdata.postrm

package info (click to toggle)
tzdata 2025b-0%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,156 kB
  • sloc: awk: 1,067; makefile: 788; python: 623; sh: 411
file content (9 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e

# Remove /etc/localtime on purge
if [ "$1" = "purge" ]; then
	rm -f /etc/localtime /etc/timezone
fi

#DEBHELPER#