https://github.com/jupyterhub/jupyterhub-deploy-teaching
Raw File
Tip revision: 63c89099880653f1ad97025dd9e652ea102602b1 authored by Brian E. Granger on 22 January 2018, 16:37:45 UTC
Merge pull request #97 from minrk/locale
Tip revision: 63c8909
saveusers.yml
---
# The playbook saves old user accounts on the host

- hosts: jupyterhub_hosts
  tasks:
    - name: save the old user accounts
      command: python3 save_users.py chdir={{home_dir}}
      become: true
      when: use_oauth
back to top