aboutsummaryrefslogtreecommitdiffstats
path: root/roles/sshd/tasks/synchronize_keys.yml
blob: 16c437c5498113e4b6b7caec4ad6759ef1ff8936 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
- name: get ssh keys for all users
  ansible.builtin.find:
    paths: files/keys
    file_type: link
    recurse: true
  delegate_to: localhost
  run_once: true
  register: result

- name: synchronize ssh keys
  ansible.posix.authorized_key:
    user: "{{ item.path | dirname | basename }}"
    state: present
    key: "{{ lookup('file', item.path) }}"
  loop_control:
    label: "{{ item.path }} -> user: {{ item.path | dirname | basename }}"
  loop: "{{ result.files }}"
  failed_when: false
remember that computers suck.
7b033b8f0a31ec08d3d9dafa390b24c6e232e09'>st.c
+++ b/st.c
@@ -2538,7 +2538,7 @@ xinit(void) {
*/
/* Xft rendering context */
- xw.draw = XftDrawCreate(xw.dpy, xw.win, xw.vis, xw.cmap);
+ xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
/* input methods */
if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
@@ -2836,7 +2836,6 @@ redraw(int timeout) {
struct timespec tv = {0, timeout * 1000};
tfulldirt();
- fprintf(stderr, "draw from redraw\n");
draw();
if(timeout > 0) {
remember that computers suck.