File: tzdata.postrm

package info (click to toggle)
tzdata 2025c-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,152 kB
  • sloc: awk: 1,369; makefile: 797; python: 780; sh: 451
file content (9 lines) | stat: -rw-r--r-- 117 bytes parent folder | download
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
fi

#DEBHELPER#