summaryrefslogtreecommitdiff
path: root/community/picocom/picocom.install
diff options
context:
space:
mode:
Diffstat (limited to 'community/picocom/picocom.install')
-rw-r--r--community/picocom/picocom.install19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/picocom/picocom.install b/community/picocom/picocom.install
deleted file mode 100644
index 4d2f2ed48..000000000
--- a/community/picocom/picocom.install
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-## arg 1: the new package version
-post_install() {
- type systemd-tmpfiles >/dev/null && systemd-tmpfiles --create picocom.conf
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
- post_install "$1"
-}
-
-## arg 1: the old package version
-post_remove() {
- type systemd-tmpfiles >/dev/null && systemd-tmpfiles --clean --remove picocom.conf
-}
-
-# vim:set ts=2 sw=2 ft=sh et: