diff --git a/doc/drlm-release-notes.rst b/doc/drlm-release-notes.rst index e4e93d25..772937f6 100644 --- a/doc/drlm-release-notes.rst +++ b/doc/drlm-release-notes.rst @@ -64,8 +64,12 @@ DRLM are compatible with previous versions, unless otherwise noted. The references pointing to fix #nr or issue #nr refer to our issues tracker +DRLM Version 2.3.1 (June 2019) - Release Notes +---------------------------------------------- + * Issue #118 solved. + DRLM Version 2.3.0 (June 2019) - Release Notes --------------------------------------------------- +---------------------------------------------- * Golang DRLM API replacing Apache2 and CGI-BIN. * Listbackup command now shows size and duration of backup. diff --git a/packaging/debian/changelog b/packaging/debian/changelog index baab3dff..3edeb457 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,6 @@ +drlm (2.3.1) stable release; urgency=high + * Issue #118 solved. + drlm (2.3.0) stable release; urgency=high * Golang DRLM API replacing Apache2 and CGI-BIN. * Listbackup command now shows size and duration of backup. diff --git a/packaging/rpm/drlm.spec b/packaging/rpm/drlm.spec index af976ee2..ec374fb7 100644 --- a/packaging/rpm/drlm.spec +++ b/packaging/rpm/drlm.spec @@ -217,6 +217,9 @@ service drlm-stord start %endif %changelog +* Fry Jun 21 2019 Pau Roura 2.3.1 +- Issue #118 solved. + * Mon Jun 17 2019 Néfix Estrada 2.3.0 - Golang DRLM API replacing Apache2 and CGI-BIN. - Listbackup command now shows size and duration of backup. diff --git a/usr/share/drlm/conf/default.conf b/usr/share/drlm/conf/default.conf index 9b0ba292..1998c618 100644 --- a/usr/share/drlm/conf/default.conf +++ b/usr/share/drlm/conf/default.conf @@ -407,7 +407,7 @@ SSH_OPTS="-tt -o UserKnownHostsFile=/dev/null -o StrictHostKeychecking=no -o Log # You can get extra information when litbackup and listclient are executed with -p parameter. # Also you can enable pretty lists by default with next parameter. # -# DEF_RETTY=[true|false] +# DEF_PRETTY=[true|false] # DEF_PRETTY=true diff --git a/usr/share/drlm/lib/install-functions.sh b/usr/share/drlm/lib/install-functions.sh index aaf4e344..8e317bee 100644 --- a/usr/share/drlm/lib/install-functions.sh +++ b/usr/share/drlm/lib/install-functions.sh @@ -331,7 +331,7 @@ function copy_ssh_id () { PUBKEY=$(<~/.ssh/id_rsa.pub) ssh $SSH_OPTS $USER@$CLI_NAME "DRLM_USER_HOME_DIR=\"\$(getent passwd \"$DRLM_USER\" | cut -d: -f6)\" ; - DRLM_USER_GROUP=\"\$(id -gn root)\" ; + DRLM_USER_GROUP=\"\$(id -gn $DRLM_USER)\" ; if [ ! -d \"\$DRLM_USER_HOME_DIR/.ssh\" ]; then $SUDO mkdir \"\$DRLM_USER_HOME_DIR/.ssh\" ; $SUDO chown $DRLM_USER:\$DRLM_USER_GROUP \$DRLM_USER_HOME_DIR/.ssh ;