/etc/redis/redis-server.pre-up.d/00_example - Debian GNU/Linux 9 (stretch)

This is the default example configuration of 00_example provided by Redis. This config file was generated by Redis running on Debian 9.

It is located under: /etc/redis/redis-server.pre-up.d/00_example

    #!/bin/sh
#
# Example script executed before redis-server is started.
#
# All executable files within this directory are executed in lexical sort
# order. Filenames must consist entirely of ASCII upper- and lower-case
# letters, digits, underscores, and hyphens. If the script returns with a
# non-zero exit code, no further scripts are run.
#
# Scripts are run by the 'redis' user and associated run-time environment.
#
# Example:
#
#    redis-cli SCRIPT LOAD "$(cat /path/to/script.lua)" >/dev/null
#
# Scripts should be idempotent so that multiple calls to (eg.)
# "/etc/init.d/redis-server start" does not result in unintended consequences.

set -eu

exit 0

    
  

Config Details

Location
/etc/redis/redis-server.pre-up.d/00_example
Operating system
Debian GNU/Linux 9 (stretch)
Length
21 lines
MD5 checksum
cebcf87d97617bf3d776f2b18d132e1b

Usage

Download the raw file with wget or curl

Wget

wget -O 00_example.example http://exampleconfig.com/static/raw/redis/debian9/etc/redis/redis-server.pre-up.d/00_example

cURL

curl http://exampleconfig.com/static/raw/redis/debian9/etc/redis/redis-server.pre-up.d/00_example > 00_example.example