daily pastebin goal
33%
SHARE
TWEET

Untitled

a guest Apr 8th, 2015 2 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. - name: Authorised admin SSH Keys
  2.   tags: ssh_admin_keys
  3.   authorized_key: user=root key="{{ lookup('file', item) }}" state=present
  4.   with_fileglob:
  5.     - public_keys/authorised/*
  6.    
  7. - name: Revoked admin SSH Keys
  8.   tags: ssh_admin_keys
  9.   authorized_key: user=root key="{{ lookup('file', item) }}" state=absent
  10.   with_fileglob:
  11.     - public_keys/revoked/*
RAW Paste Data
Top