This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sqlite3 | |
import os | |
import json | |
import time | |
sql_data_file = 'app_data.sqlite' | |
dirname = os.path.dirname(os.path.realpath(__file__)) | |
ts = int(time.time()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# File locations - Change as needed | |
list="/tmp/updatelist.txt" # List of updates not in any branches | |
email="/tmp/updatemail.txt" # Temp file to hold the email message | |
mailbinary="/usr/sbin/sendmail" # Location of the binary that sends mail | |
repoutil="/usr/local/reposado/repoutil" # Location of the repoutil binary | |
# Options for automatically adding new updates to a branch - Change as desired | |
autoadd=true |