Skip to content

Commit

Permalink
Release Candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
Squidly271 committed Mar 12, 2017
1 parent dab1c1e commit 48aa9da
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 1 deletion.
Binary file modified archive/ca.turbo-2017.03.11-x86_64-1.txz
Binary file not shown.
2 changes: 1 addition & 1 deletion plugins/ca.turbo.plg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!ENTITY name "ca.turbo">
<!ENTITY author "Andrew Zawadzki">
<!ENTITY version "2017.03.11">
<!ENTITY md5 "a16345d0e51b66c0977bf30d20c801c8">
<!ENTITY md5 "fe11169d365191d3c288af3cedb40714">
<!ENTITY launch "Settings/Turbo">
<!ENTITY plugdir "/usr/local/emhttp/plugins/&name;">
<!ENTITY github "Squidly271/ca.turbo">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/php
<?PHP
###################################
# #
# CA Automatic Turbo Mode #
# Copyright 2017, Andrew Zawadzki #
# #
###################################

require_once("/usr/local/emhttp/plugins/ca.turbo/include/helpers.php");
require_once("/usr/local/emhttp/plugins/ca.turbo/include/paths.php");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
#!/bin/bash
###################################
# #
# CA Automatic Turbo Mode #
# Copyright 2017, Andrew Zawadzki #
# #
###################################

if [[ -e /tmp/ca.turbo/PID ]]
then
logger "Stopping CA Turbo Mode"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?PHP
###################################
# #
# CA Automatic Turbo Mode #
# Copyright 2017, Andrew Zawadzki #
# #
###################################

require_once("/usr/local/emhttp/plugins/ca.turbo/include/helpers.php");
require_once("/usr/local/emhttp/plugins/ca.turbo/include/paths.php");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<?PHP
###################################
# #
# CA Automatic Turbo Mode #
# Copyright 2017, Andrew Zawadzki #
# #
###################################

function getSettings($rawSettings) {
foreach ($rawSettings as $set) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
<?PHP
###################################
# #
# CA Automatic Turbo Mode #
# Copyright 2017, Andrew Zawadzki #
# #
###################################

$turboPaths['backgroundPID'] = "/tmp/ca.turbo/PID";
$turboPaths['status'] = "/tmp/ca.turbo/status.json";
?>

0 comments on commit 48aa9da

Please sign in to comment.