Skip to content

Instantly share code, notes, and snippets.

View ethancedwards8's full-sized avatar
😀

Ethan Edwards ethancedwards8

😀
View GitHub Profile
FROM gcc:10-buster
RUN apt update \
&& apt install git \
&& rm -rf /var/cache/apt \
&& git clone https://github.com/solusipse/fiche \
&& make \
&& make install
CMD ["/usr/local/bin/fiche", "-d", "scratch.althahosting.com", "-o", "/tmp/log"]
@ethancedwards8
ethancedwards8 / create-ansible-user.yml
Created June 29, 2021 14:51
HP t730 Configuration with Ansible.
# This creates an ansible user that will only be used the ansible scripts. The idea is only you have the private key to get
# into the user, which keeps it 100% secure.
- hosts: "t730"
become: yes
tasks:
- name: Create an ansible user
user:
name: ansible
state: present
shell: /bin/bash