mirror of
https://github.com/weewx/weewx.git
synced 2026-04-17 08:06:58 -04:00
19 lines
227 B
Bash
Executable File
19 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
# preinst script for weewx debian package
|
|
# Copyright 2014-2024 Matthew Wall
|
|
|
|
# abort if any command returns error
|
|
set -e
|
|
|
|
case "$1" in
|
|
install|upgrade)
|
|
;;
|
|
|
|
abort-upgrade)
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|