aboutsummaryrefslogtreecommitdiff
path: root/stackbin.bin
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-13 22:11:38 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-13 22:11:38 -0500
commit39eb97cbceeb332c21eaeeb4843b58b34667cfb2 (patch)
treeeb11eee877bc42163ce3e17c8fcd99cf72eb1d69 /stackbin.bin
parentadd expiry, and wsgi usage to support that (diff)
downloadstackbin-39eb97cbceeb332c21eaeeb4843b58b34667cfb2.tar.gz
stackbin-39eb97cbceeb332c21eaeeb4843b58b34667cfb2.tar.bz2
stackbin-39eb97cbceeb332c21eaeeb4843b58b34667cfb2.zip
refactor filenames and improve docs
Diffstat (limited to 'stackbin.bin')
-rwxr-xr-xstackbin.bin1
1 files changed, 0 insertions, 1 deletions
diff --git a/stackbin.bin b/stackbin.bin
index d3b2da3..4fb3241 100755
--- a/stackbin.bin
+++ b/stackbin.bin
@@ -1,7 +1,6 @@
#!/bin/sh
# Reference: fuss.bin from fuss project
# Startdate: 2022-02-13 19:25
-# Goal: see if uwsgi reacts to the @timer directives in the pastebin.py file, because flask run doesn't.
thisscript="$( readlink -f "${0}" )"
COMMAND=""
grep -qiE 'ID=.*(rhel|centos|fedora)' /etc/os-release && COMMAND="${COMMAND} uwsgi" || \
bgstack15