import template code
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
changelog
|
||||
control
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
minilb for Debian
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
minilb (@PACKAGE_VERSION@-1) unstable; urgency=low
|
||||
|
||||
* Release.
|
||||
|
||||
-- Oleg Borodin <borodin@unix7.org> Sun, 29 Oct 2017 18:57:56 +0200
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
10
|
||||
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
Source: minilb
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: borodin@unix7.org
|
||||
Build-Depends: debhelper (>=10)
|
||||
Standards-Version: @PACKAGE_VERSION@
|
||||
Homepage: http://wiki.unix7.org
|
||||
|
||||
Package: minilb-service
|
||||
Description: minilb
|
||||
Architecture: amd64
|
||||
|
||||
Package: minilb-control
|
||||
Description: minilb
|
||||
Architecture: amd64
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
/usr/bin/minilbctl
|
||||
+1
@@ -0,0 +1 @@
|
||||
#!/bin/sh -e
|
||||
+1
@@ -0,0 +1 @@
|
||||
#!/bin/sh -e
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
#!/bin/sh -e
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
usr/sbin/minilbadm
|
||||
usr/sbin/minilbd
|
||||
lib/systemd/system/minilbd.service
|
||||
var/run/minilb
|
||||
var/log/minilb
|
||||
etc/minilb
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
if [ "$1" = "configure" ] ; then
|
||||
# Initial installation
|
||||
systemctl preset minilbd.service >/dev/null 2>&1 || :
|
||||
fi
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
systemctl daemon-reload >/dev/null 2>&1 || :
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
case "$1" in
|
||||
install|upgrade)
|
||||
;;
|
||||
|
||||
abort-upgrade)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "preinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
#DEBHELPER#
|
||||
|
||||
exit 0
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then
|
||||
# Package removal, not upgrade
|
||||
systemctl --no-reload disable minilbd.service > /dev/null 2>&1 || :
|
||||
systemctl stop minilbd.service > /dev/null 2>&1 || :
|
||||
fi
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
# You must remove unused comment lines for the released package.
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
export GO111MODULE=on
|
||||
|
||||
%:
|
||||
# dh $@ --with autoreconf
|
||||
dh $@
|
||||
# ./configure --prefix=/usr
|
||||
# dh_build
|
||||
# dh_install
|
||||
# dh_auto_clean
|
||||
|
||||
override_dh_auto_configure:
|
||||
./configure --prefix=/usr
|
||||
|
||||
#EOF
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
3.0 (quilt)
|
||||
Vendored
Vendored
+1
@@ -0,0 +1 @@
|
||||
version=3
|
||||
Reference in New Issue
Block a user