├── .gitignore ├── INSTALL ├── LICENSE ├── Makefile ├── README.md ├── configure ├── danebot ├── danebot.1.pod ├── danebot.default ├── danebot.service └── danebot.timer /.gitignore: -------------------------------------------------------------------------------- 1 | danebot.1 2 | -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/configure -------------------------------------------------------------------------------- /danebot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/danebot -------------------------------------------------------------------------------- /danebot.1.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/danebot.1.pod -------------------------------------------------------------------------------- /danebot.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/danebot.default -------------------------------------------------------------------------------- /danebot.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/danebot.service -------------------------------------------------------------------------------- /danebot.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlsaware/danebot/HEAD/danebot.timer --------------------------------------------------------------------------------