mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
7 lines
174 B
Bash
7 lines
174 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = "upgrade" ] || [ "$1" = "remove" ]; then
|
|
# Return etc/cron.d/clickhouse-server to original state
|
|
service clickhouse-server disable_cron ||:
|
|
fi
|