1
0
Atdalīts 0

remove obsolete bash scripts

master
nathaniel smith 2017-04-21 23:24:22 -07:00
vecāks d02d8d6abf
revīzija efe238475a
2 mainītis faili ar 0 papildinājumiem un 26 dzēšanām

Parādīt failu

@ -1,20 +0,0 @@
#!/bin/bash
# TODO just make this better once the new package is ready
# Feed JSON/tdp output from "stats" into mustache template to generate
# tilde.town homepage. Invoke periodically from crontab.
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
template=/usr/local/tildetown-scripts/tildetown/templates/frontpage.html
mustache=/usr/local/tildetown-scripts/tildetown/mustache.py
input_path=/var/www/tilde.town/tilde.json
output_path=/var/www/tilde.town/index.html
if [ ! -f "$input_path" ]; then
print "homepage generation needs missing $input_path"
exit 1
fi
exec /usr/local/virtualenvs/tildetown/bin/python "$mustache" "$template" < "$input_path" > "$output_path"

Parādīt failu

@ -1,6 +0,0 @@
#!/bin/sh
# run stats.py in the appropriate virtualenv.
#
# invoke periodically from crontab and direct the output to
# /var/www/tilde.town/tilde.json
exec /usr/local/virtualenvs/tildetown/bin/python /usr/local/tildetown-scripts/tildetown/stats.py