forked from TrueCloudLab/frostfs-s3-gw
[#2] Update debpackage
Signed-off-by: Denis Kirillov <d.kirillov@yadro.com>
This commit is contained in:
parent
765fd28a49
commit
f744c672cb
16 changed files with 53 additions and 51 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -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
|
* 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
14
debian/control
vendored
|
@ -1,14 +1,14 @@
|
||||||
Source: neofs-s3-gw
|
Source: frostfs-s3-gw
|
||||||
Section: misc
|
Section: misc
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: NeoSPCC <tech@nspcc.ru>
|
Maintainer: TrueCloudLab <tech@frostfs.info>
|
||||||
Build-Depends: debhelper-compat (= 13), git, devscripts
|
Build-Depends: debhelper-compat (= 13), git, devscripts
|
||||||
Standards-Version: 4.5.1
|
Standards-Version: 4.5.1
|
||||||
Homepage: https://fs.neo.org/
|
Homepage: http://frostfs.info/
|
||||||
Vcs-Git: https://github.com/nspcc-dev/neofs-s3-gw.git
|
Vcs-Git: https://github.com/TrueCloudLab/frostfs-s3-gw.git
|
||||||
Vcs-Browser: https://github.com/nspcc-dev/neofs-s3-gw
|
Vcs-Browser: https://github.com/TrueCloudLab/frostfs-s3-gw
|
||||||
|
|
||||||
Package: neofs-s3-gw
|
Package: frostfs-s3-gw
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: ${misc:Depends}
|
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
10
debian/copyright
vendored
|
@ -1,11 +1,13 @@
|
||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Upstream-Name: neofs-s3-gw
|
Upstream-Name: frostfs-s3-gw
|
||||||
Upstream-Contact: tech@nspcc.ru
|
Upstream-Contact: tech@frostfs.info
|
||||||
Source: https://github.com/nspcc-dev/neofs-s3-gw
|
Source: https://github.com/TrueCloudLab/frostfs-s3-gw
|
||||||
|
|
||||||
Files: *
|
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)
|
(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
|
License: AGPL-3.0-only
|
||||||
|
|
2
debian/frostfs-s3-gw.dirs
vendored
Normal file
2
debian/frostfs-s3-gw.dirs
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
etc/frostfs/s3
|
||||||
|
var/lib/frostfs/s3
|
4
debian/frostfs-s3-gw.install
vendored
Normal file
4
debian/frostfs-s3-gw.install
vendored
Normal 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
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# postinst script for neofs-s3-gw
|
# postinst script for frostfs-s3-gw
|
||||||
#
|
#
|
||||||
# see: dh_installdeb(1)
|
# see: dh_installdeb(1)
|
||||||
|
|
||||||
|
@ -21,17 +21,17 @@ set -e
|
||||||
case "$1" in
|
case "$1" in
|
||||||
configure)
|
configure)
|
||||||
USERNAME=s3
|
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
|
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/neofs/$USERNAME >/dev/null; then
|
if ! dpkg-statoverride --list /etc/frostfs/$USERNAME >/dev/null; then
|
||||||
chown -f -R root:neofs-$USERNAME /etc/neofs/$USERNAME
|
chown -f -R root:frostfs-$USERNAME /etc/frostfs/$USERNAME
|
||||||
chown -f root:neofs-$USERNAME /etc/neofs/$USERNAME/config.yaml || true
|
chown -f root:frostfs-$USERNAME /etc/frostfs/$USERNAME/config.yaml || true
|
||||||
chmod -f 0750 /etc/neofs/$USERNAME
|
chmod -f 0750 /etc/frostfs/$USERNAME
|
||||||
chmod -f 0640 /etc/neofs/$USERNAME/config.yaml || true
|
chmod -f 0640 /etc/frostfs/$USERNAME/config.yaml || true
|
||||||
fi
|
fi
|
||||||
USERDIR=$(getent passwd "neofs-$USERNAME" | cut -d: -f6)
|
USERDIR=$(getent passwd "frostfs-$USERNAME" | cut -d: -f6)
|
||||||
if ! dpkg-statoverride --list neofs-$USERDIR >/dev/null; then
|
if ! dpkg-statoverride --list frostfs-$USERDIR >/dev/null; then
|
||||||
chown -f neofs-$USERNAME: $USERDIR
|
chown -f frostfs-$USERNAME: $USERDIR
|
||||||
chown -f neofs-$USERNAME: $USERDIR/rules.json
|
chown -f frostfs-$USERNAME: $USERDIR/rules.json
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# postrm script for neofs-s3-gw
|
# postrm script for frostfs-s3-gw
|
||||||
#
|
#
|
||||||
# see: dh_installdeb(1)
|
# see: dh_installdeb(1)
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ set -e
|
||||||
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
purge)
|
purge)
|
||||||
rm -rf /var/lib/neofs/s3
|
rm -rf /var/lib/frostfs/s3
|
||||||
;;
|
;;
|
||||||
|
|
||||||
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# preinst script for neofs-s3-gw
|
# preinst script for frostfs-s3-gw
|
||||||
#
|
#
|
||||||
# see: dh_installdeb(1)
|
# see: dh_installdeb(1)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# prerm script for neofs-s3-gw
|
# prerm script for frostfs-s3-gw
|
||||||
#
|
#
|
||||||
# see: dh_installdeb(1)
|
# see: dh_installdeb(1)
|
||||||
|
|
16
debian/frostfs-s3-gw.service
vendored
Normal file
16
debian/frostfs-s3-gw.service
vendored
Normal 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
|
2
debian/neofs-s3-gw.dirs
vendored
2
debian/neofs-s3-gw.dirs
vendored
|
@ -1,2 +0,0 @@
|
||||||
etc/neofs/s3
|
|
||||||
var/lib/neofs/s3
|
|
4
debian/neofs-s3-gw.install
vendored
4
debian/neofs-s3-gw.install
vendored
|
@ -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
|
|
16
debian/neofs-s3-gw.service
vendored
16
debian/neofs-s3-gw.service
vendored
|
@ -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
2
debian/rules
vendored
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# Do not try to strip Go binaries
|
# Do not try to strip Go binaries
|
||||||
export DEB_BUILD_OPTIONS := nostrip
|
export DEB_BUILD_OPTIONS := nostrip
|
||||||
SERVICE = neofs-s3-gw
|
SERVICE = frostfs-s3-gw
|
||||||
|
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
|
Loading…
Reference in a new issue