├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml └── tasks ├── anon-stats.yml ├── cleanup.yml ├── empty.yml ├── main.yml ├── setup.yml └── symlink.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/meta/main.yml -------------------------------------------------------------------------------- /tasks/anon-stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/anon-stats.yml -------------------------------------------------------------------------------- /tasks/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/cleanup.yml -------------------------------------------------------------------------------- /tasks/empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/empty.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/setup.yml -------------------------------------------------------------------------------- /tasks/symlink.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansistrano/rollback/HEAD/tasks/symlink.yml --------------------------------------------------------------------------------