[#2] Update debpackage

Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
pull/4/head
Denis Kirillov 2022-12-15 17:29:54 +03:00 committed by Alex Vanin
parent 765fd28a49
commit f744c672cb
16 changed files with 53 additions and 51 deletions

4
debian/changelog vendored
View File

@ -1,5 +1,5 @@
neofs-s3-gw (0.0.0) stable; urgency=medium
forstfs-s3-gw (0.0.0) stable; urgency=medium
* Please see CHANGELOG.md
-- NeoSPCC <tech@nspcc.ru> Wed, 24 Aug 2022 18:29:49 +0300
-- TrueCloudLab <tech@frostfs.info> Wed, 24 Aug 2022 18:29:49 +0300

14
debian/control vendored
View File

@ -1,14 +1,14 @@
Source: neofs-s3-gw
Source: frostfs-s3-gw
Section: misc
Priority: optional
Maintainer: NeoSPCC <tech@nspcc.ru>
Maintainer: TrueCloudLab <tech@frostfs.info>
Build-Depends: debhelper-compat (= 13), git, devscripts
Standards-Version: 4.5.1
Homepage: https://fs.neo.org/
Vcs-Git: https://github.com/nspcc-dev/neofs-s3-gw.git
Vcs-Browser: https://github.com/nspcc-dev/neofs-s3-gw
Homepage: http://frostfs.info/
Vcs-Git: https://github.com/TrueCloudLab/frostfs-s3-gw.git
Vcs-Browser: https://github.com/TrueCloudLab/frostfs-s3-gw
Package: neofs-s3-gw
Package: frostfs-s3-gw
Architecture: any
Depends: ${misc:Depends}
Description: NeoFS S3 gateway provides API compatible with Amazon S3 cloud storage service.
Description: FrostFS S3 gateway provides API compatible with Amazon S3 cloud storage service.

10
debian/copyright vendored
View File

@ -1,11 +1,13 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: neofs-s3-gw
Upstream-Contact: tech@nspcc.ru
Source: https://github.com/nspcc-dev/neofs-s3-gw
Upstream-Name: frostfs-s3-gw
Upstream-Contact: tech@frostfs.info
Source: https://github.com/TrueCloudLab/frostfs-s3-gw
Files: *
Copyright: 2018-2022 NeoSPCC (@nspcc-dev), contributors of neofs-s3-gw project
Copyright: 2018-2022 NeoSPCC (@nspcc-dev), contributors of neofs-s3-gw project
(https://github.com/nspcc-dev/neofs-s3-gw/blob/master/CREDITS.md)
2022 True Cloud Lab (@TrueCloudLab), contributors of frostfs-s3-gw project
(https://github.com/TrueCloudLab/frostfs-s3-gw/blob/master/CREDITS.md)
License: AGPL-3.0-only

2
debian/frostfs-s3-gw.dirs vendored 100644
View File

@ -0,0 +1,2 @@
etc/frostfs/s3
var/lib/frostfs/s3

4
debian/frostfs-s3-gw.install vendored 100644
View File

@ -0,0 +1,4 @@
config/config.yaml etc/frostfs/s3
config/rules.json var/lib/frostfs/s3
bin/frostfs-s3-gw usr/bin
bin/frostfs-s3-authmate usr/bin

View File

@ -1,5 +1,5 @@
#!/bin/sh
# postinst script for neofs-s3-gw
# postinst script for frostfs-s3-gw
#
# see: dh_installdeb(1)
@ -21,17 +21,17 @@ set -e
case "$1" in
configure)
USERNAME=s3
id -u neofs-$USERNAME >/dev/null 2>&1 || useradd -s /usr/sbin/nologin -d /var/lib/neofs/s3 --system -M -U -c "NeoFS S3 gateway" neofs-$USERNAME
if ! dpkg-statoverride --list /etc/neofs/$USERNAME >/dev/null; then
chown -f -R root:neofs-$USERNAME /etc/neofs/$USERNAME
chown -f root:neofs-$USERNAME /etc/neofs/$USERNAME/config.yaml || true
chmod -f 0750 /etc/neofs/$USERNAME
chmod -f 0640 /etc/neofs/$USERNAME/config.yaml || true
id -u frostfs-$USERNAME >/dev/null 2>&1 || useradd -s /usr/sbin/nologin -d /var/lib/frostfs/s3 --system -M -U -c "FrostFS S3 gateway" frostfs-$USERNAME
if ! dpkg-statoverride --list /etc/frostfs/$USERNAME >/dev/null; then
chown -f -R root:frostfs-$USERNAME /etc/frostfs/$USERNAME
chown -f root:frostfs-$USERNAME /etc/frostfs/$USERNAME/config.yaml || true
chmod -f 0750 /etc/frostfs/$USERNAME
chmod -f 0640 /etc/frostfs/$USERNAME/config.yaml || true
fi
USERDIR=$(getent passwd "neofs-$USERNAME" | cut -d: -f6)
if ! dpkg-statoverride --list neofs-$USERDIR >/dev/null; then
chown -f neofs-$USERNAME: $USERDIR
chown -f neofs-$USERNAME: $USERDIR/rules.json
USERDIR=$(getent passwd "frostfs-$USERNAME" | cut -d: -f6)
if ! dpkg-statoverride --list frostfs-$USERDIR >/dev/null; then
chown -f frostfs-$USERNAME: $USERDIR
chown -f frostfs-$USERNAME: $USERDIR/rules.json
fi
;;

View File

@ -1,5 +1,5 @@
#!/bin/sh
# postrm script for neofs-s3-gw
# postrm script for frostfs-s3-gw
#
# see: dh_installdeb(1)
@ -21,7 +21,7 @@ set -e
case "$1" in
purge)
rm -rf /var/lib/neofs/s3
rm -rf /var/lib/frostfs/s3
;;
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)

View File

@ -1,5 +1,5 @@
#!/bin/sh
# preinst script for neofs-s3-gw
# preinst script for frostfs-s3-gw
#
# see: dh_installdeb(1)

View File

@ -1,5 +1,5 @@
#!/bin/sh
# prerm script for neofs-s3-gw
# prerm script for frostfs-s3-gw
#
# see: dh_installdeb(1)

16
debian/frostfs-s3-gw.service vendored 100644
View File

@ -0,0 +1,16 @@
[Unit]
Description=FrostFS S3 Gateway
Requires=network.target
[Service]
Type=simple
ExecStart=/usr/bin/frostfs-s3-gw --config /etc/frostfs/s3/config.yaml
User=frostfs-s3
Group=frostfs-s3
WorkingDirectory=/var/lib/frostfs/s3
Restart=always
RestartSec=5
PrivateTmp=true
[Install]
WantedBy=multi-user.target

View File

@ -1,2 +0,0 @@
etc/neofs/s3
var/lib/neofs/s3

View File

@ -1,4 +0,0 @@
config/config.yaml etc/neofs/s3
config/rules.json var/lib/neofs/s3
bin/neofs-s3-gw usr/bin
bin/neofs-s3-authmate usr/bin

View File

@ -1,16 +0,0 @@
[Unit]
Description=NeoFS S3 Gateway
Requires=network.target
[Service]
Type=simple
ExecStart=/usr/bin/neofs-s3-gw --config /etc/neofs/s3/config.yaml
User=neofs-s3
Group=neofs-s3
WorkingDirectory=/var/lib/neofs/s3
Restart=always
RestartSec=5
PrivateTmp=true
[Install]
WantedBy=multi-user.target

2
debian/rules vendored
View File

@ -2,7 +2,7 @@
# Do not try to strip Go binaries
export DEB_BUILD_OPTIONS := nostrip
SERVICE = neofs-s3-gw
SERVICE = frostfs-s3-gw
%:
dh $@