File: postinst

package info (click to toggle)
debmake 3.5.11
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 408 kB
  • ctags: 22
  • sloc: sh: 763; makefile: 217
file content (10 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

# Remove old style of crontab insertion if present
if ! grep -q "^#-- mgetty" /etc/crontab; then
	cp /etc/crontab /tmp/$$
	sed </tmp/$$ >/etc/crontab -e "/root faxrunq/d"
	rm /tmp/$$
fi