working commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
changelog
|
||||
control
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
mstore for Debian
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
mstore (@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: mstore
|
||||
Section: utils
|
||||
Priority: extra
|
||||
Maintainer: borodin@unix7.org
|
||||
Build-Depends: debhelper (>=8)
|
||||
Standards-Version: @PACKAGE_VERSION@
|
||||
Homepage: http://wiki.unix7.org
|
||||
|
||||
Package: mstore-control
|
||||
Description: mstore
|
||||
Architecture: amd64
|
||||
|
||||
Package: mstore-service
|
||||
Description: mstore
|
||||
Architecture: amd64
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
mstore-control
|
||||
mstore-service
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
mstore-control-dbgsym_2.11.0-1_amd64.deb debug optional automatic=yes
|
||||
mstore-control_2.11.0-1_amd64.deb utils extra
|
||||
mstore-service-dbgsym_2.11.0-1_amd64.deb debug optional automatic=yes
|
||||
mstore-service_2.11.0-1_amd64.deb utils extra
|
||||
mstore_2.11.0-1_amd64.buildinfo utils extra
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
usr/bin/mstorectl
|
||||
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
+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
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
usr/sbin/mstored
|
||||
lib/systemd/system/mstored.service
|
||||
var/run/mstore
|
||||
var/log/mstore
|
||||
etc/mstore
|
||||
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/sh -e
|
||||
|
||||
if [ "$1" = "configure" ] ; then
|
||||
# Initial installation
|
||||
systemctl preset mstored.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 mstored.service > /dev/null 2>&1 || :
|
||||
systemctl stop mstored.service > /dev/null 2>&1 || :
|
||||
fi
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
# You must remove unused comment lines for the released package.
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
export GO111MODULE=on
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
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