This commit is contained in:
Squidly271 2022-07-07 17:48:28 -04:00
parent 083b508305
commit 2ebb2ea6e2
6 changed files with 20 additions and 10 deletions

Binary file not shown.

View File

@ -7,8 +7,8 @@ e564b860fa0d5022df83c103922665d7 ./include/helpers.php
d9bce32c48b39966cf5e5b6fdf6946ee ./include/paths.php
532fffdf939594c143e679da02bd841e ./javascript/libraries.js
71f911a818d88d3d567f8a2898094ee2 ./README.md
ef622baa4b9017a9f907da7c4bd89c8d ./scripts/caPostHook.sh
4418a38959208e7d5d5b8a3ed61b1c66 ./scripts/caPreHook.sh
aa1520f5576149b5f7734d4f280ba4ee ./scripts/caPostHook.php
b45c0067b64f05c3dafc202e423a3151 ./scripts/caPreHook.php
d3d8286046cc7d6edf8f596067c163a2 ./scripts/checkForUpdates.php
99a9d58a49a7f6812f18bd4be2b563b9 ./scripts/checkForUpdates.sh
677ac9a29993ec57e09ec6a1856f1a11 ./scripts/dockerConvert.php

View File

@ -0,0 +1,9 @@
#!/usr/bin/php
<?
if ( $argv[1] == "check" || $argv[1] == "checkall" )
return;
echo "Executing Community Applications Post-Plugin Settings\n";
@unlink("/tmp/community.applications/pluginPending/{$argv[2]}");
echo "Finished";
?>

View File

@ -1,4 +0,0 @@
#!/bin/bash
echo "Executing Community Applications Post-Plugin Settings"
rm -rf /tmp/community.applications/pluginPending/$2
echo "Finished"

View File

@ -0,0 +1,9 @@
#!/usr/bin/php
<?
if ( $argv[1] == "check" || $argv[1] == "checkall" )
return;
echo "Executing Community Applications Pre-Plugin Settings\n";
@mkdir("/tmp/community.applications/pluginPending",0777,true);
touch("/tmp/community.applications/pluginPending/{$argv[2]}");
?>

View File

@ -1,4 +0,0 @@
#!/bin/bash
echo "Executing Community Applications Pre-Plugin Settings"
mkdir -p /tmp/community.applications/pluginPending
touch /tmp/community.applications/pluginPending/$2