12 lines
311 B
Bash
Executable File
12 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
# install.conf
|
|
|
|
# Installation prefix
|
|
# On Everest, this should be /usr, because /bin, /sbin, and /lib are all symlinks to /usr
|
|
PREFIX="/usr"
|
|
|
|
# System config directory
|
|
# On almost all systems, this should be /etc
|
|
# /etc/esv can also work, but requires you to patch the main executable
|
|
CONFDIR="/etc"
|