diff --git a/Dockerfile b/Dockerfile index 26856c9..cc592a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,9 +63,9 @@ ARG CROND='#!/bin/bash \n\ if [[ "${SERVER_CROND_ENABLED}" != "TRUE" ]] \n\ then \n\ - file_disenable "'${SERVER_CROND_INI}'" FALSE \n\ + file_enable "'${SERVER_CROND_INI}'" FALSE \n\ else \n\ - file_disenable "'${SERVER_CROND_INI}'" TRUE \n\ + file_enable "'${SERVER_CROND_INI}'" TRUE \n\ fi' #----------------------------------------------------------------------------------------------------------------------- @@ -75,9 +75,9 @@ ARG DNSMASQ='#!/bin/bash \n\ if [[ "${SERVER_DNS_ENABLED}" != "TRUE" ]] \n\ then \n\ - file_disenable "'${SERVER_DNSMASQ_INI}'" FALSE \n\ + file_enable "'${SERVER_DNSMASQ_INI}'" FALSE \n\ else \n\ - file_disenable "'${SERVER_DNSMASQ_INI}'" TRUE \n\ + file_enable "'${SERVER_DNSMASQ_INI}'" TRUE \n\ \n\ cp '${SERVER_DNSMASQ_CONF}'.dist '${SERVER_DNSMASQ_CONF}' \n\ \n\ diff --git a/ReadMe.txt b/ReadMe.txt index 2f0516f..465ba9c 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -5,7 +5,7 @@ Welcome to Rx3-Docker/Server docker image! This project aims to build a Mageia server docker image to be used by other Rx3 packaging projects. Features: - - Curtently based on rx3-docker/base:1.3.5-mga9 image, + - Curtently based on rx3-docker/base:1.3.6-mga9 image, - Init script calling in order sub scripts in /etc/init.d & /etc/rcD.d, - supervisord managing services, - crond & logrotate configured & crond disabled by default, diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index c96b59d..1b9a340 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,3 +1,12 @@ +------------------------------------------------------------------------------------------------------------------------------------ +Rx3-Docker/Server V 1.2.7 - A. GIBERT - 2025/11/28 +------------------------------------------------------------------------------------------------------------------------------------ + +- Use now rx3-docker/base:1.3.6-mga9 image, +- Rebuild for updates. + + + ------------------------------------------------------------------------------------------------------------------------------------ Rx3-Docker/Server V 1.2.6 - A. GIBERT - 2025/09/19 ------------------------------------------------------------------------------------------------------------------------------------ diff --git a/env.dist b/env.dist index e758cc1..df50f0b 100644 --- a/env.dist +++ b/env.dist @@ -18,13 +18,13 @@ ORG_URL_PREFIX="${ORG_REGISTRY}/${ORG_NAME}" IMG_NAME="server" IMG_NAME_FULL="Rx3-Docker/Server Docker Image" -IMG_VERSION="1.2.6-mga9" +IMG_VERSION="1.2.7-mga9" IMG_MAINTAINER='"Arnaud G. GIBERT" ' IMG_URL_PREFIX="${ORG_URL_PREFIX}" IMG_URL="${IMG_URL_PREFIX}/${IMG_NAME}:${IMG_VERSION}" -IMG_FROM_URL="${ORG_URL_PREFIX}/base:1.3.5-mga9" +IMG_FROM_URL="${ORG_URL_PREFIX}/base:1.3.6-mga9"