This repository has been archived on 2017-06-25. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-fedora-workstation/Makefile

14 lines
522 B
Makefile
Raw Normal View History

2017-01-27 19:55:34 -06:00
apply:
2017-05-18 00:54:17 -05:00
ansible-playbook debian.yml -u root -i "127.0.0.1,"
2017-05-22 23:16:51 -05:00
apply-all:
ansible-playbook debian.yml -u root -i 'andraia,'
apply-local:
su -c "ansible-playbook debian.yml -u root -i '127.0.0.1,' --connection=local"
2017-06-15 15:59:59 -05:00
plex-local:
sudo ansible-playbook plex_server.yml -u root -i '127.0.0.1,' --connection=local
init-local:
su -c "mkdir -p /root/.ssh/ && cat ~gary/.ssh/id_rsa.pub >> /root/.ssh/authorized_key"
init:
ssh root@127.0.0.1 mkdir -p .ssh
cat ~/.ssh/id_rsa.pub | ssh root@127.0.0.1 "cat >> .ssh/authorized_key"