Maintainer: [your name] Product Page: (Name)[URL]
Any additional information/notes applicable here
Category:System | |
License:Apache2 | |
Web Site:https://github.com/mcrosson/Identiconizer | |
Source Code:https://github.com/mcrosson/Identiconizer | |
Issue Tracker: | |
Auto Name:Identiconizer! | |
Summary:Manage identicons for contacts | |
Description: | |
Create and remove Identicons for contacts. |
#!/usr/bin/python2 | |
# -*- coding: utf-8 -*- | |
from __future__ import print_function | |
import subprocess, pprint, json | |
from collections import defaultdict | |
btrfs_bin = '/sbin/btrfs' |
--- | |
- hosts: 127.0.0.1 | |
connection: local | |
vars_prompt: | |
- name: tempdir | |
prompt: "Directory for temp data" | |
default: "/tmp/devops" | |
private: no | |
- name: bootstrap_eth_bridge |
--- | |
- hosts: ec2 | |
vars: | |
timestamp: "{{ lookup('pipe', 'date +%Y%m%d\\ %H%M%S') }}" | |
roles: | |
- include: includes/common_roles.yml | |
pre_tasks: |
- name: service restart {{ tomcat_service_name }} | |
service: | |
state=restarted | |
name={{ tomcat_service_name }} |
<?xml version="1.0" encoding="UTF-8"?> | |
<zabbix_export> | |
<version>2.0</version> | |
<date>2017-01-07T06:11:13Z</date> | |
<groups> | |
<group> | |
<name>Templates</name> | |
</group> | |
</groups> | |
<templates> |
user www-data; | |
worker_processes 4; | |
error_log /var/log/nginx/error.log; | |
events { | |
worker_connections 1024; | |
} | |
root@6ea1c0f41c65:/workspaces/zmk/app# west build -p --board nice_nano -- -DSHIELD=tidbit_19key -- west build: making build dir /workspaces/zmk/app/build pristine | |
-- west build: generating a build system | |
-- Using keymap file: /workspaces/zmk/app/boards/shields/tidbit/tidbit_19key.keymap | |
Including boilerplate (Zephyr base): /workspaces/zmk/zephyr/cmake/app/boilerplate.cmake | |
-- Application: /workspaces/zmk/app | |
-- Zephyr version: 2.3.0 (/workspaces/zmk/zephyr) | |
-- Found Python3: /usr/bin/python3.7 (found suitable exact version "3.7.3") found components: Interpreter | |
-- git describe failed: fatal: No tags can describe 'e5610344b9b22a4e547563067fa6772a2666b540'. | |
Try --always, or create some tags.; | |
BUILD_VERSION is left undefined |
In file included from ../../src/behaviors/behavior_rgb_underglow.c:13: | |
../../src/behaviors/behavior_rgb_underglow.c: In function 'on_keymap_binding_pressed': | |
../../include/dt-bindings/zmk/rgb.h:20:29: error: expected ':' or '...' before numeric constant | |
20 | #define RGB_TOG RGB_TOG_CMD 0 | |
| ^ | |
../../src/behaviors/behavior_rgb_underglow.c:24:10: note: in expansion of macro 'RGB_TOG' | |
24 | case RGB_TOG: | |
| ^~~~~~~ | |
compilation terminated due to -Wfatal-errors |