summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2014-11-10bugfix: pid file was not created correctly on startup. closes #6338HEADmasterelijah
2014-07-01check for ARGV.first before testing itAzul
Otherwise we will crash if no args are passed. Now we print the usage message
2014-07-01pid issue remains to be solved - revert to sth workingAzul
We've seen two instances of tapicero running on the production servers. The reason is that we are using two different places for the pid file - one for root and one for a normal user. In this scenario tapicero started by root will not notice the tapicero run as a normal user and vice versa. One idea was to solve this by always using /var/run/pid. However this also requires write privileges to that place which essentially only root has. So let's keep the two different places and just make sure we ALWAYS run tapicero as the same user.
2014-06-27check for ARGV.first before testing itAzul
Otherwise we will crash if no args are passed. Now we print the usage message
2014-06-23initial take on replicationAzul
2014-02-04hand config files on the command line to the daemonAzul
2014-02-04first interesting testsAzul
2014-02-04try to get require rubygems to work on travisAzul
2014-01-03make logging more preciseAzul
* do not log the SystemExit after the fork * log error classes alongside messages * unify logging in retry_request_once * debug now logs every step * info has one message per user created * warn only logs errors during the actions * error only logs crashes
2014-01-03better debug loggin, sleep before retryingAzul
2014-01-03ensure we log all errorsAzul
2013-12-22Version 0.3.1 with new flags --run-once, --rerun and --overwrite-security0.3.1Azul
--run-once will exit once all current changes have been processed --rerun will process all users again even those that were processed before --overwrite-security will overwrite security for user databases even if it has been set before.
2013-12-19add design docs on db creation, use PathnameAzul
Pathname makes dealing with files easier than String. Tapicero will look for design documents in design directory in the tapicero path for now.
2013-09-25log to file or syslog instead of STDOUTAzul
2013-09-10copying over skeleton from leap_ca which worked similarlyAzul