comparison verysimpleslideshow/DEBIAN/debian.postrm @ 0:dcd610585610

INIT
author prymula <prymula76@outlook.com>
date Thu, 21 Sep 2023 22:32:14 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dcd610585610
1 #!/bin/sh
2 set -e
3
4 case "$1" in
5 0) # last one out put out the lights
6 rm -f /usr/bin/vsss
7 ;;
8 esac
9
10 exit 0