mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-17 15:28:18 +00:00
10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
NAME=falco
|
|
|
|
if [ -x "/etc/init.d/$NAME" ]; then
|
|
update-rc.d $NAME defaults >/dev/null
|
|
fi
|
|
|