Compare commits

...

2 Commits

Author SHA1 Message Date
837a4358b8
feat: support dump and recovery mode
All checks were successful
continuous-integration/drone/push Build is passing
2024-08-18 13:10:41 +02:00
fe4b1f65d4
chore: support restart by backup user 2024-08-18 13:07:18 +02:00
4 changed files with 17 additions and 2 deletions

View File

@ -30,7 +30,7 @@
############################################################
runtar:gnutar_path=/usr/bin/tar
#restore_by_amanda_user=no
restore_by_amanda_user=yes
tcp_port_range=512,1024
udp_port_range=840,860

View File

@ -22,7 +22,7 @@ FROM debian:stable-slim
RUN apt-get -qy update && apt-get -qy upgrade
RUN apt-get -qy install git libssl3 bash perl libglib2.0 swig libtirpc3 libreadline8 \
libxslt1.1 libxml-simple-perl libjson-perl procps
RUN apt-get -qy install tini
RUN apt-get -qy install tini openbsd-inetd
COPY --from=builder /usr/local/ /usr/local/
@ -34,6 +34,8 @@ ENV LD_LIBRARY_PATH /usr/local/share/perl5/site_perl/auto/Amanda/Debug/
ADD scripts/entryPoint.sh /entryPoint.sh
RUN chmod +x /entryPoint.sh
COPY inetd.conf /etc/inetd.conf
USER backup
ENTRYPOINT ["/usr/bin/tini", "--", "/entryPoint.sh"]

1
server/inetd.conf Normal file
View File

@ -0,0 +1 @@
amanda stream tcp nowait backup /usr/local/libexec/amanda/amandad amandad -auth=ssl amindexd amidxtaped

View File

@ -5,9 +5,21 @@ if [ -z ${AMANDA_CONFIG} ]; then
AMANDA_CONFIG="server"
fi
if [ -z ${AMANDA_MODE} ]; then
AMANDA_MODE="dump"
fi
if [ "${AMANDA_MODE}" == "dump" ]; then
amcleanup -k ${AMANDA_CONFIG}
amcheck ${AMANDA_CONFIG}
amdump ${AMANDA_CONFIG}
amstatus ${AMANDA_CONFIG}
else
inetd -d /etc/inetd.conf
fi
exit 0