7 lines
148 B
Bash
Executable File
7 lines
148 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ "$1" = "configure" ] ; then
|
|
# Initial installation
|
|
systemctl preset certmanagerd.service >/dev/null 2>&1 || :
|
|
fi
|