Skip to content

Commit

Permalink
Fix #460. Don't start influxdb automatically after installing from pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
jvshahid committed May 20, 2014
1 parent b6a5a10 commit 9c8204b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Bugfixes

- [Issue #557](https://github.com/influxdb/influxdb/issues/557). Group by time(1y) doesn't work while time(365d) works
- [Issue #460](https://github.com/influxdb/influxdb/issues/460). Don't start automatically after installing

## v0.6.5 [2014-05-19]

Expand Down
1 change: 1 addition & 0 deletions scripts/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ case $1 in
fi
else
log_failure_msg "$name Process is not running"
exit 1
fi
;;
# reload)
Expand Down
6 changes: 5 additions & 1 deletion scripts/post_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ if [ ! -L /etc/init.d/influxdb ]; then
chkconfig --add influxdb
fi
fi
service influxdb restart

# only restart if the service was already running
if /etc/init.d/influxdb status; then
service influxdb restart
fi

0 comments on commit 9c8204b

Please sign in to comment.