Tomas Barton
Tomas Barton
I've added a simple `Makefile` but I'm struggling a bit project structure. E.g. when installing to `/usr/local` Lua files could be placed in `/usr/local/share/lua/5.2/core.lua`. It would be nicer to put...
Added `jdeb` for creating a Debian package. Package is created when running e.g. `mvn install` in `target` directory. Version is taken from Maven package version and patch version is taken...
This PR introduces a possibility to modify sudoers defaults without the need to provide whole configuration file. However, it would be only possible to add new entries: ```yaml sudo::defaults: mailto:...
The changelog looks huge, but basically it's just wrapping existing code inside `main` function while supporting passing flags like `-h`, `--help`, `--force`, etc. Currently supported ENV variables should work as...
Typically on Debian `apt-cache madison` shows all available versions ``` $ apt-cache madison pg-probackup-12 pg-probackup-12 | 2.4.7-1.f586c96e3d1dc6e2.buster | https://repo.postgrespro.ru/pg_probackup/deb buster/main-buster amd64 Packages ``` which allows easier downgrade in case that...
A full backup with streaming ``` pg_probackup-13 backup -B /var/lib/postgresql/pgbackup --instance db01 -b FULL --stream --remote-host=db01.example.net --remote-user=postgres -U backup -d backup -j 4 --temp-slot --compress ``` is failing due to...
Add instructions from compiling.
Lastest version (1.0.5) gives following warning: ``` Deprecation warning: please give :encryption option as a Hash to Net::LDAP.new ```
I've followed the examples, but `kafka-mesos` isn't launching any tasks on Mesos: ``` ./kafka-mesos.sh broker list brokers: id: 0 active: true state: starting resources: cpus:1.00, mem:2048, heap:1024, port:auto failover: delay:1m,...
In order to make icons visible on dark background, it's necessary to modify code for loading icons, instead of: ```cpp _editIcon = QIcon(":/icons/layeredit"); ``` use something like: ```cpp _editIcon =...