https://github.com/vagmcs/ansible-desktop
A simple and quick way to deploy my Debian 9 configuration.
https://github.com/vagmcs/ansible-desktop
ansible debian desktop
Last synced: 2 months ago
JSON representation
A simple and quick way to deploy my Debian 9 configuration.
- Host: GitHub
- URL: https://github.com/vagmcs/ansible-desktop
- Owner: vagmcs
- License: mit
- Created: 2018-06-04T14:17:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-02T17:10:10.000Z (almost 8 years ago)
- Last Synced: 2025-01-22T18:35:47.774Z (over 1 year ago)
- Topics: ansible, debian, desktop
- Language: CSS
- Homepage:
- Size: 773 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Ansible Desktop Setup for Debian 9
Become a root user and do the following:
```bash
apt-get install sudo dirmngr
adduser sudo
```
Add the following lines to `/etc/apt/sources.list`
```bash
# jessie security updates
deb http://security.debian.org/debian-security jessie/updates main
# ansible
deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main
```
Then run these commands:
```bash
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367
apt-get update
apt-get install ansible
```
Finally, run the `local.yml` playbook to configure your workstation:
```bash
sudo ansible-playbook local.yml
```