From 1047cc86f3faba8f74ad74bc68c6daf2ed109eb6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 11 Oct 2024 23:55:00 -0500 Subject: [PATCH] attempt to add a postinst to the package Signed-off-by: Jeff Carr --- postinst | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 postinst diff --git a/postinst b/postinst new file mode 100755 index 0000000..0725ce2 --- /dev/null +++ b/postinst @@ -0,0 +1,6 @@ +#!/bin/sh +set -e + +systemctl enable virtigod.service +systemctl stop virtigod.service +systemctl start virtigod.service