| Server IP : 217.160.0.223 / Your IP : 216.73.216.141 Web Server : Apache System : Linux www 6.18.38-i1-ampere+ #1084 SMP Tue Jul 7 09:18:31 CEST 2026 aarch64 User : sws1073902667 ( 1073902667) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /bin/ |
Upload File : |
#!/bin/sh
help=
restart=
flush=
unknown=
dashdash=
dumpmodules=
for option
do
case $dashdash$option in
--)
dashdash=yes ;;
--help | -? | -h)
help=yes ;;
restart | reload | graceful)
restart=yes ;;
flush)
flush=yes ;;
dumpmodules)
dumpmodules=yes ;;
*)
unknown=yes ;;
esac
done
usage () {
echo "Usage: $0 restart|reload|graceful"
}
if [ "$help" = "yes" ]; then
usage
exit 0
fi
if [ "$unknown" = "yes" ]; then
exec 2>&1
echo "Unknown arguments"
usage
exit 3
fi
if [ "$restart" = "yes" ]; then
exec cm4all-passage-client fade_children
fi
if [ "$flush" = "yes" ]; then
exec cm4all-passage-client flush_cache
fi
if [ "$dumpmodules" = "yes" ]; then
exec /usr/lib/cm4all/lhttp/bin/apache-lhttpd -t -D DUMP_MODULES -Dstandard
fi
usage