This repository has been archived on 2021-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
eltelive/sh/env-conf.sh

15 lines
293 B
Bash
Executable File

#!/bin/sh
echo "Setting up helper services and watchdogs..."
case "$EL_OS" in
"alpine")
cp stream-tokens /etc/periodic/daily/
chmod +x /etc/periodic/daily/stream-tokens
;;
"debian")
cp stream-tokens /etc/cron.daily/
chmod +x /etc/cron.daily/stream-tokens
;;
esac