Add tor compose, fedora service fix

This commit is contained in:
vdo 2022-05-26 14:56:23 +01:00
parent 819fa55cdd
commit a8cf12c2a6
No known key found for this signature in database
GPG key ID: F10AD1E5C08EA7E2
3 changed files with 32 additions and 0 deletions

View file

@ -152,6 +152,10 @@ install_docker() { (
# Docker Installer as provided in
curl -fsSL https://get.docker.com -o - | bash >>"${XMRSH_LOG_FILE}" 2>&1
check_return $?
# Fedora needs to start the daemon
if grep -q "fedora" /etc/os-release; then
systemctl start docker >>"${XMRSH_LOG_FILE}" 2>&1
fi
echo -e "${Ok}"
); }