Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

3.2.5 #140

Merged
merged 1 commit into from
Feb 2, 2021
Merged

3.2.5 #140

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ The `./gravity-sync.sh restore` process completely revamped:

- Changes script startup and shutdown text format.

#### 3.2.5

- Correct error where Docker based installs would fail to restart if Docker exec commands required sudo privileges.
- Correct error where setup script would prompt twice for Local/Remote DNSMASQ directories when using Docker.

## 3.1

### The Container Release
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.4
3.2.5
2 changes: 1 addition & 1 deletion gravity-sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SCRIPT_START=$SECONDS

# GRAVITY SYNC BY VMSTAN #####################
PROGRAM='Gravity Sync'
VERSION='3.2.4'
VERSION='3.2.5'

# For documentation or downloading updates visit https://github.com/vmstan/gravity-sync
# Requires Pi-Hole 5.x or higher already be installed, for help visit https://pi-hole.net
Expand Down
4 changes: 2 additions & 2 deletions includes/gs-config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function advanced_config_generate {
echo_stat
sed -i "/# DNSMAQ_DIR=''/c\DNSMAQ_DIR='${INPUT_DNSMAQ_DIR}'" ${LOCAL_FOLDR}/${CONFIG_FILE}
error_validate
SKIP_DNSMAQ_DIR="1"
SKIP_DNSMASQ_DIR="1"
else
MESSAGE="This setting is required!"
echo_warn
Expand Down Expand Up @@ -226,7 +226,7 @@ function advanced_config_generate {
echo_stat
sed -i "/# RNSMAQ_DIR=''/c\RNSMAQ_DIR='${INPUT_RNSMAQ_DIR}'" ${LOCAL_FOLDR}/${CONFIG_FILE}
error_validate
SKIP_RNSMAQ_DIR="1"
SKIP_RNSMASQ_DIR="1"
else
MESSAGE="This setting is required!"
echo_warn
Expand Down
4 changes: 2 additions & 2 deletions includes/gs-core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ function ph_type {
PH_EXEC="${PIHOLE_BIN}"
elif [ "$PH_IN_TYPE" == "docker" ]
then
PH_EXEC="${DOCKER_BIN} exec ${DOCKER_CON} pihole"
PH_EXEC="sudo ${DOCKER_BIN} exec ${DOCKER_CON} pihole"
fi

if [ "$RH_IN_TYPE" == "default" ]
then
RH_EXEC="${RIHOLE_BIN}"
elif [ "$RH_IN_TYPE" == "docker" ]
then
RH_EXEC="${ROCKER_BIN} exec ${ROCKER_CON} pihole"
RH_EXEC="sudo ${ROCKER_BIN} exec ${ROCKER_CON} pihole"
fi
}

Expand Down