├── .gitignore ├── README-RUS.md ├── README.md ├── UNLICENSE ├── dante └── Dockerfile ├── docker-compose.yml ├── etc ├── group ├── login.defs ├── passwd ├── shadow └── sockd.conf ├── noc.png └── scripts ├── add ├── chp └── del /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/.gitignore -------------------------------------------------------------------------------- /README-RUS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/README-RUS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/UNLICENSE -------------------------------------------------------------------------------- /dante/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/dante/Dockerfile -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /etc/group: -------------------------------------------------------------------------------- 1 | root:x:0: 2 | nogroup:x:65534: 3 | -------------------------------------------------------------------------------- /etc/login.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/etc/login.defs -------------------------------------------------------------------------------- /etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/etc/passwd -------------------------------------------------------------------------------- /etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/etc/shadow -------------------------------------------------------------------------------- /etc/sockd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/etc/sockd.conf -------------------------------------------------------------------------------- /noc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/noc.png -------------------------------------------------------------------------------- /scripts/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/scripts/add -------------------------------------------------------------------------------- /scripts/chp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/scripts/chp -------------------------------------------------------------------------------- /scripts/del: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schors/tgdante/HEAD/scripts/del --------------------------------------------------------------------------------