├── .gitignore ├── README.md ├── RollbackNotes.md ├── index.js ├── package.json └── test ├── legacy.sh ├── stable.sh ├── stdin ├── history_sample.log └── short_history_sample.log ├── stdout ├── as-apt-arguments.out ├── from-zero.out ├── last-2.out ├── multiple-list.out ├── no-args.out ├── short-input.out ├── single-record.out └── specify-input.out └── tests.sh /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/README.md -------------------------------------------------------------------------------- /RollbackNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/RollbackNotes.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/package.json -------------------------------------------------------------------------------- /test/legacy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/legacy.sh -------------------------------------------------------------------------------- /test/stable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stable.sh -------------------------------------------------------------------------------- /test/stdin/history_sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdin/history_sample.log -------------------------------------------------------------------------------- /test/stdin/short_history_sample.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdin/short_history_sample.log -------------------------------------------------------------------------------- /test/stdout/as-apt-arguments.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/as-apt-arguments.out -------------------------------------------------------------------------------- /test/stdout/from-zero.out: -------------------------------------------------------------------------------- 1 | 0 /usr/bin/first-unattended-upgrade 2 | -------------------------------------------------------------------------------- /test/stdout/last-2.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/last-2.out -------------------------------------------------------------------------------- /test/stdout/multiple-list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/multiple-list.out -------------------------------------------------------------------------------- /test/stdout/no-args.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/no-args.out -------------------------------------------------------------------------------- /test/stdout/short-input.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/short-input.out -------------------------------------------------------------------------------- /test/stdout/single-record.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/stdout/single-record.out -------------------------------------------------------------------------------- /test/stdout/specify-input.out: -------------------------------------------------------------------------------- 1 | 0 /usr/bin/first-unattended-upgrade 2 | -------------------------------------------------------------------------------- /test/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolfen/apt-history/HEAD/test/tests.sh --------------------------------------------------------------------------------