├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bogokey.go ├── debian ├── changelog ├── control ├── copyright ├── files ├── gbp.conf ├── install ├── postinst ├── rules ├── source │ └── format └── ssh-key-confirmer.substvars ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/README.md -------------------------------------------------------------------------------- /bogokey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/bogokey.go -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/files -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/gbp.conf -------------------------------------------------------------------------------- /debian/install: -------------------------------------------------------------------------------- 1 | build/ssh-key-confirmer usr/bin/ -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/ssh-key-confirmer.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/debian/ssh-key-confirmer.substvars -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjojo/ssh-key-confirmer/HEAD/main.go --------------------------------------------------------------------------------