Merge branch 'master' into master

This commit is contained in:
angelok 2021-02-27 14:20:22 +00:00
commit 34d2cd46b1
224 changed files with 3248 additions and 607 deletions

9
.drone.yml Normal file
View File

@ -0,0 +1,9 @@
kind: pipeline
name: default
steps:
- name: syntax
image: debian:10
commands:
- .drone/deps
- ansible-playbook -i hosts site.yml --syntax

4
.drone/deps Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
apt-get update -qq > /dev/null
apt-get dist-upgrade -qq > /dev/null
apt-get install ansible -qq > /dev/null

3
.drone/seds Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
sed -i "s/thunix.net/127.0.0.1/g" hosts
sed -i 's/- include: resolv.yml/#&/' roles/common/tasks/main.yml

View File

@ -30,6 +30,7 @@ After that, run it again, without the syntax flag:
If it looks good, add all your files, then push to the repo.
If for whatever reason you **can't** do this, create a PR and let our CI (Drone) test it for you.
### Adding a Package
To install a new package on a machine, just find the package name, and add it to the end of ./role/{which role}/tasks/packages.yml. Run ansible-playbook against thunix:

11
hosts
View File

@ -1,8 +1,13 @@
[all:vars]
ansible_connection=local
ansible_python_interpreter=/usr/bin/python3
[common]
thunix.net ansible_connection=local
localhost
[shell]
thunix.net ansible_connection=local
localhost
[webserver]
thunix.net ansible_connection=local
localhost

View File

@ -1,15 +1,22 @@
#!/bin/bash
export RUNNING="/dev/shm/ansible_is_running"
export HOOK="/dev/shm/ansible-hook-last-run"
export SCHED="/dev/shm/ansible_scheduler"
# sets ansible scheduling
touch $SCHED
if [ -f $RUNNING ]; then
echo "Ansible is currently running."
exit 1
else
touch $RUNNING
cd /var/thunix/ansible
/usr/bin/git pull
/usr/local/bin/ansible-playbook -i /var/thunix/ansible/hosts /var/thunix/ansible/site.yml -u root
touch /dev/shm/ansible-hook-last-run
while [ -f $SCHED ]
do
rm $SCHED
/usr/bin/git pull
/usr/local/bin/ansible-playbook -i /var/thunix/ansible/hosts /var/thunix/ansible/site.yml -u root
touch $HOOK
done
rm $RUNNING
exit 0
fi

View File

@ -1,2 +1,4 @@
nameserver 127.0.0.1
nameserver 149.56.184.112
nameserver 94.247.43.254
#nameserver 8.8.8.8

View File

@ -1,5 +1,17 @@
# Install our baseline packages for all machines, irrespective of what role they might have
---
- name: Install bootstrap packages
apt:
name: "{{ packages }}"
state: present
update_cache: yes
vars:
packages:
- ansible
- python3
- python3-apt
- gpg
- name: Add Thunix Repo
apt_key:
url: http://deb.thunix.net/release.key
@ -19,27 +31,34 @@
- dpkg-sig
- git
- ieee-data
- libboost-dev
- letsencrypt
- man
- members
- pflogsumm
- python
- python-certbot-apache
- python-httplib2
- python-jinja2
- python-kerberos
- python-markupsafe
- python-netaddr
- python-paramiko
- python-pip
- python-selinux
# - python-netaddr
- python3-paramiko
# - python-pip
- python3-pymysql
- python3-selinux
- python-xmltodict
- python-yaml
- python3-flask
- python3-flask-restful
- python3-flask-api
- python3-pip
- python3-psutil
- python3-pymysql
- sqlite
- sudo
- systemd
- ufw
- libboost-dev
- python-pymysql
- python3-pymysql
# Install ansible python package, because it's the latest
- name: Install ansible

View File

@ -0,0 +1,14 @@
[Install]
WantedBy=multi-user.target
[Unit]
Description=BZFlag Game Server
After=network-online.target
[Service]
ExecStart=/usr/games/bzfs -conf /var/lib/bzflag/bzflag.conf
ExecReload=/bin/kill -HUP $MAINPID
User=bzflag
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,2 @@
#!/bin/bash
/usr/sbin/pflogsumm -d today /var/log/mail.log | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net

View File

@ -1,10 +1,9 @@
#!/bin/bash
#https://wiki.znc.in/Signed_SSL_certificate
ZNCDOMAIN="thunix.net-0001"
DOMAIN="deb.thunix.net"
ZNCPEM=/var/lib/znc/znc.pem
#[[ $RENEWED_LINEAGE != "/etc/letsencrypt/live/$ZNCDOMAIN" ]] && exit 0
echo "Updating znc.pem Before ZNC 1.7"
cat /etc/letsencrypt/live/$ZNCDOMAIN/privkey.pem > $ZNCPEM
cat /etc/letsencrypt/live/$ZNCDOMAIN/fullchain.pem >> $ZNCPEM
cat /etc/letsencrypt/live/$DOMAIN/privkey.pem > $ZNCPEM
cat /etc/letsencrypt/live/$DOMAIN/fullchain.pem >> $ZNCPEM

View File

@ -11,11 +11,12 @@ readme_directory = no
compatibility_level = 2
# TLS parameters
smtpd_tls_cert_file=/etc/letsencrypt/live/thunix.net-0001/fullchain.pem
smtpd_tls_key_file=/etc/letsencrypt/live/thunix.net-0001/privkey.pem
smtpd_tls_cert_file=/etc/letsencrypt/live/deb.thunix.net/fullchain.pem
smtpd_tls_key_file=/etc/letsencrypt/live/deb.thunix.net/privkey.pem
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtp_tls_security_level = may
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
@ -37,8 +38,8 @@ mynetworks = 127.0.0.0/8
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
#inet_protocols = all
inet_protocols = ipv4
inet_protocols = all
#inet_protocols = ipv4
home_mailbox = Maildir/
@ -48,6 +49,10 @@ smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
# Don't accept mail from domains that don't exist.
smtpd_sender_restrictions = reject_unknown_sender_domain
#Allow ONLY authenticated users to send email
smtpd_recipient_restrictions =
permit_mynetworks,
@ -60,12 +65,17 @@ smtpd_recipient_restrictions =
reject_unknown_sender_domain,
reject_unknown_recipient_domain,
check_policy_service unix:private/policyd-spf,
reject_rbl_client blackholes.tepucom.nl,
reject_rbl_client spamsources.fabel.dk,
reject_rbl_client bl.fmb.la=127.0.0.2,
reject_rbl_client bl.fmb.la=127.0.1.[24,25,26,27,28],
reject_rbl_client dnsbl-2.uceprotect.net,
reject_rbl_client spam.dnsbl.anonmails.de,
reject_rbl_client uribl.abuse.ro,
reject_rbl_client all.spamrats.com,
reject_rbl_client ix.dnsbl.manitu.net,
reject_rbl_client db.wpbl.info,
reject_rbl_client sbl.spamhaus.org,
reject_rbl_client xbl.spamhaus.org,
reject_rbl_client blackholes.tepucom.nl,
reject_rhsbl_sender dbl.spamhaus.org
policyd-spf_time_limit = 3600
@ -73,5 +83,9 @@ policyd-spf_time_limit = 3600
milter_protocol = 2
milter_default_action = accept
smtpd_milters = inet:localhost:12301
non_smtpd_milters = inet:localhost:12301
#smtpd_milters = inet:localhost:12301
#non_smtpd_milters = inet:localhost:12301
# message delivery requests that any client is allowed (50/hr)
smtpd_client_auth_rate_limit = 50
anvil_rate_time_unit = 60m

View File

@ -0,0 +1,14 @@
[Install]
WantedBy=multi-user.target
[Unit]
Description=Minecraft Game Server
After=network-online.target
[Service]
ExecStart=/var/lib/minecraft/paper/start.sh
ExecReload=/bin/kill -HUP $MAINPID
User=minecraft
[Install]
WantedBy=multi-user.target

View File

@ -0,0 +1,35 @@
#!/bin/bash
DATE=$(date +%Y%m%d)
BACKUPS=/var/backups
find $BACKUPS -name "*.tgz" -mtime +3 -exec rm {} \;
tar -cz \
--exclude ".nobackup" \
--exclude "nobackup" \
--exclude "/home/irc/*" \
--exclude='/home/chuck/*' \
--exclude='/home/slip/*' \
--exclude='/home/angelok/*' \
--exclude='/home/usernameak/*' \
--exclude='/home/ubergeek/*' \
--exclude='/home/amcclure/*' \
--exclude='/home/fosslinux/*' \
--exclude='/home/zszoke/*' \
--exclude='/home/duitser/*' \
/home/ \
/var/games/minetest-server/.minetest/ \
/var/lib/minecraft/paperclip/ \
/var/lib/bzflag/ \
/var/lib/znc/ \
/var/spool/cron/ \
/var/spool/anacron/ \
-f $BACKUPS/$DATE.tgz
mysqldump --all-databases > $BACKUPS/$DATE-all_databases.sql
tar --remove-files -cz $BACKUPS/$DATE-all_databases.sql \
-f $BACKUPS/$DATE-all_databases.sql.tgz
chown root:sudo $BACKUPS/$DATE*.tgz
chmod 640 $BACKUPS/*.tgz

View File

@ -0,0 +1,3 @@
#!/bin/sh
/usr/bin/telnet telehack.com

View File

@ -1,44 +0,0 @@
#!/bin/bash
# ZNC account creation
CONF="/var/lib/znc/.znc/configs/znc.conf"
PID=$(pgrep -u znc znc)
NEWCONF="/var/lib/znc/znc_account.newconf"
# $username and $password are retrieved from create-account script
if [[ -z $1 || -z $2 ]]
then
echo -e "Usage: $(basename $0) [username] [password]"
exit
fi
# search if $username has been added previously
if grep -iq $1 $CONF
then
echo -e "User: '$1' already exists"
exit
fi
username=$1
password=$2
kill -s USR1 $PID # Rewrite znc.conf
sleep 1
# set username and password
sed s/newuser/$username/g $NEWCONF >> $CONF
expect << EOF | grep -E 'Hash|Salt' | tr -d \\r >> $CONF
spawn znc --makepass
expect "*Enter password: "
send "$password\r"
expect "*Confirm password: "
send "$password\r"
expect eof
EOF
echo " </Pass>" >> $CONF
echo "</User>" >> $CONF
sleep 1
kill -s HUP $PID # Reload znc.conf
sleep 1
kill -s USR1 $PID # Rewrite znc.conf

View File

@ -1,25 +0,0 @@
<User newuser>
Admin = false
AltNick = newuser|znc
AppendTimestamp = false
AutoClearChanBuffer = true
AutoClearQueryBuffer = true
Buffer = 50
DenyLoadMod = false
DenySetBindHost = false
Ident = newuser
JoinTries = 10
LoadModule = chansaver
MaxJoins = 0
MaxNetworks = 2
MaxQueryBuffers = 50
MultiClients = true
Nick = newuser
PrependTimestamp = true
QuitMsg = bouncer provider thunix.net
RealName = Got Thunix ?
StatusPrefix = *
TimestampFormat = [%H:%M:%S]
<Pass password>
Method = SHA256

View File

@ -1,14 +1,17 @@
# Enable or disable apache2 mods
---
- name: userdir
- name: Enable userdir apache module
apache2_module:
name: userdir
state: present
- name: ssl
- name: Enable ssl apache module
apache2_module:
name: ssl
state: present
- name: php7.0
- name: Enable php7.0 apache module
apache2_module:
name: php7.0
state: present

View File

@ -11,19 +11,8 @@
- name: Install bzflag target
copy:
src: ../files/bzflag.service
dest: /etc/systemd/system/bzflag.service
content: |
[Install]
WantedBy=multi-user.target
[Unit]
Description=BZFlag Game Server
After=network-online.target
[Service]
ExecStart=/usr/games/bzfs -conf /var/lib/bzflag/bzflag.conf
ExecReload=/bin/kill -HUP $MAINPID
User=bzflag
[Install]
WantedBy=multi-user.target
user: root
group: root
mode: 0644

View File

@ -10,22 +10,11 @@
- name: Install minecraft target
copy:
src: ../files/minecraft.service
dest: /etc/systemd/system/minecraft.service
content: |
[Install]
WantedBy=multi-user.target
[Unit]
Description=Minecraft Game Server
After=network-online.target
[Service]
ExecStart=/var/lib/minecraft/paper/start.sh
ExecReload=/bin/kill -HUP $MAINPID
User=minecraft
[Install]
WantedBy=multi-user.target
owner: root
group: root
mode: 0644
- name: Install start.sh
copy:

View File

@ -24,7 +24,7 @@
- name: Add weechat repo
apt_repository:
repo: 'deb https://weechat.org/debian buster main'
repo: 'deb https://weechat.org/debian bullseye main'
state: present
filename: weechat
update_cache: yes
@ -43,21 +43,15 @@
- name: Add debian contrib
apt_repository:
repo: 'deb http://ftp.de.debian.org/debian stable main contrib'
repo: 'deb http://ftp.de.debian.org/debian bullseye main contrib'
state: present
update_cache: yes
- name: Add Debian unstable
apt_repository:
repo: 'deb http://deb.debian.org/debian/ unstable main'
state: present
update_cache: yes
- name: Add mono-project repo
apt_repository:
repo: 'deb https://download.mono-project.com/repo/debian stable-buster main'
state: present
update_cache: yes
#- name: Add mono-project repo
# apt_repository:
# repo: 'deb https://download.mono-project.com/repo/debian bullseye main'
# state: present
# update_cache: yes
- name: Install baseline packages
apt:
@ -69,6 +63,9 @@
- alpine
- adwaita-icon-theme
- analog
- autoconf2.13
- bat
- bison
- bsdgames
- build-essential
- byobu
@ -76,16 +73,23 @@
- bzflag-server
- ca-certificates-mono
- caca-utils
- clang
- cloc
- cmake
- cmake-curses-gui
- cmark
- cmatrix
- context
- cowsay
- devscripts
- dopewars
- dos2unix
- dosemu
# - dosemu
- dovecot-pop3d
- dovecot-core
- dovecot-imapd
- eggdrop
- exa
- elinks
- emacs
- ffmpeg
@ -93,17 +97,23 @@
- finger
- fingerd
- fish
# - fd
- flatpak
- flatpak-builder
- flex
- fortune
- frotz
- gitweb
- golang
- gopher
- gnome-icon-theme
- gnome-icon-theme-extras
# - gnome-icon-theme-extras
- htop
- hugo
- ident2
# - ident2
- inkscape
- imagemagick
- ircii
- irssi
- isync
- jekyll
@ -113,6 +123,8 @@
- lftp
- libapache2-mod-php
- libarchive-dev
- libc-dev
- libc++-dev
- libconvert-binhex-perl
- libffi-dev
- libfreetype6
@ -126,21 +138,26 @@
- libsdl1.2-dev
- libsdl2-dev
- libssl-dev
- libtool
- libtool-bin
- linux-headers-amd64
- lolcat
- lua5.3
- lynx
- make
- mercurial
- mc
- mc-data
- micro
- midori
- minetest-data
- minetest-mod-advspawning
- minetest-mod-animalmaterials
- minetest-mod-animals
# - minetest-mod-advspawning
# - minetest-mod-animalmaterials
# - minetest-mod-animals
- minetest-mod-maidroid
- minetest-mod-mesecons
- minetest-mod-mobf-core
- minetest-mod-mobf-trap
# - minetest-mod-mobf-core
# - minetest-mod-mobf-trap
- minetest-mod-moreblocks
- minetest-mod-moreores
- minetest-mod-nether
@ -150,7 +167,7 @@
- mkdocs
- mkdocs-doc
- mkdocs-bootstrap
- mkdocs-bootswatch
# - mkdocs-bootswatch
- mono-apache-server
- mono-complete
- mono-dbg
@ -159,18 +176,21 @@
- moon-buggy
- mosh
- mutt
- mysql-client
# - mysql-client
- nasm
- nbsdgames
# - nbsdgames
- neofetch
- neomutt
- neovim
- newsbeuter
- newsboat
- oidentd
- openbsd-inetd
- opendkim
- openssl
- p7zip-full
- pandoc
- pwgen
- pelican
- pelican-doc
- php-imagick
@ -182,23 +202,28 @@
- php-imap
- php-intl
- php-mysql
- php-ps
- php-pspell
- php-recode
# - php-recode
- php-sqlite3
- php-tidy
- php-xmlrpc
- php7.3-xsl
- php7.3-curl
- php7.3-xml
# - php7.3-xsl
# - php7.3-curl
# - php7.3-xml
- pngtools
- postfix-policyd-spf-python
- poezio
- proot
- profanity
- python
- python-certbot-apache
- python-pip
- python-potr
- python-twisted
- python3-flask
# - python-pip
# - python-potr
- python3
- python3-django
- python3-flask
- python3-pip
- python3-toot
- python3-twisted
@ -207,10 +232,12 @@
- qemu
- qemu-efi
- qemu-system
- racket
- ranger
- ruby-paint
- ruby-trollop
- rustc
- sat-xmpp-primitivus
- scala
- scala-doc
- scala-library
@ -227,10 +254,13 @@
- tcl8.6
- tcllib
- tcltls
- texinfo
- tdom
- telnet
- telegram-cli
- todotxt-cli
- unrar-free
- uuid
- vim
- vrms
- w3m-img
@ -296,3 +326,19 @@
owner: root
group: root
mode: 0755
- name: Install Telehack wrapper
copy:
src: ../files/usr/local/bin/telehack
dest: /usr/local/bin/telehack
owner: root
group: root
mode: 0755
- name: Install Backup Job
copy:
src: ../files/usr/local/bin/backup
dest: /usr/local/bin/backup
owner: root
group: root
mode: 0774

View File

@ -1,6 +1,6 @@
# install pb
---
- name: clone pb
- name: Clone pb
git:
repo: https://tildegit.org/tomasino/pb
dest: /usr/src/pb

View File

@ -28,3 +28,11 @@
group: root
mode: 0644
# Deploy cron for reports
- name: Deploy cron reports
copy:
src: ../files/etc/cron.daily/postfix_stats
dest: /etc/cron.daily/postfix_stats
owner: root
group: root
mode: 0755

View File

@ -6,18 +6,18 @@
proto: tcp
port: '{{ item }}'
with_items:
- 70
- 79
- 80
- 113
- 143
- 443
- 1326
- 5154
- 6697
- 7776
- 30000
- 25565
- '70'
- '79'
- '80'
- '113'
- '143'
- '443'
- '1326'
- '5154'
- '6697'
- '7776'
- '30000'
- '25565'
- name: Create UFW udp rules
ufw:
@ -25,10 +25,10 @@
proto: udp
port: '{{ item }}'
with_items:
- "60000:61000"
- 1326
- 5154
- 30000
- '60000:61000'
- '1326'
- '5154'
- '30000'
- name: Create tcp limits
ufw:
@ -36,11 +36,11 @@
proto: tcp
port: '{{ item }}'
with_items:
- 22
- 25
- 587
- 2222
- 53
- '22'
- '25'
- '587'
- '2222'
- '53'
- name: Create UDP limits
ufw:
@ -48,4 +48,4 @@
proto: udp
port: '{{ item }}'
with_items:
- 53
- '53'

View File

@ -1,5 +1,5 @@
---
- group:
name: tilde
state: present
@ -8,158 +8,318 @@
name: sudo
state: present
#- group:
# name: fortitude
# state: present
#Service accounts
- include: users/minecraft.yml
# Service accounts
- include: users/bzflag.yml
- include: users/cherry.yml
- include: users/minecraft.yml
- include: users/znc.yml
#Normal Users
- include: users/amcclure.yml
- include: users/ben.yml
- include: users/ubergeek.yml
- include: users/naglfar.yml
- include: users/anton.yml
- include: users/fosslinux.yml
- include: users/slip.yml
#- include: users/parik.yml
- include: users/quetzalcoatl.yml
- include: users/redhat.yml
- include: users/gokce.yml
- include: users/r.yml
#- include: users/brendantcc.yml
#- include: users/dragon.yml
#- include: users/spanmer.yml
#- include: users/panzer.yml
- include: users/hawaii.yml
- include: users/trip.yml
#- include: users/xenialito69.yml
#- include: users/freuddy.yml
#- include: users/ringo.yml
#- include: users/hexhaxtron.yml
#- include: users/smtpsupplicant.yml
- include: users/orliesaurus.yml
- include: users/gooly.yml
- include: users/diabla.yml
- include: users/ml.yml
- include: users/usernameak.yml
- include: users/user.yml
- include: users/angelok.yml
#- include: users/johnc.yml
#- include: users/k4j.yml
#- include: users/ultima.yml
#- include: users/ragnarok.yml
#- include: users/jundi.yml
#- include: users/rado.yml
#- include: users/sata.yml
- include: users/wesx.yml
- include: users/arda.yml
#- include: users/larasaty.yml
- include: users/bercik.yml
- include: users/khuxkm.yml
#- include: users/z00t.yml
- include: users/swann.yml
#- include: users/ukhuwah.yml
#- include: users/mom.yml
#- include: users/andro.yml
#- include: users/hasbullah.yml
#- include: users/riska.yml
#- include: users/naruto.yml
#- include: users/pria.yml
#- include: users/abimks.yml
#- include: users/bullah.yml
- include: users/dalist.yml
- include: users/apple.yml
#- include: users/logique.yml
#- include: users/jumbajookiba.yml
#- include: users/letamesis.yml
- include: users/chuck.yml
#- include: users/janda.yml
- include: users/os.yml
#- include: users/akoeabi.yml
#- include: users/mks.yml
#- include: users/makmur.yml
#- include: users/makassar.yml
#- include: users/abah.yml
#- include: users/derby.yml
- include: users/usher.yml
#- include: users/responsibleracoon.yml
- include: users/transfusion.yml
- include: users/adam.yml
#- include: users/audiofile.yml
#- include: users/vgk.yml
- include: users/cyphyx.yml
#- include: users/krystianbajno.yml
- include: users/vigilant.yml
- include: users/isaac.yml
- include: users/moskrin.yml
- include: users/southerntofu.yml
- include: users/dariusz.yml
#- include: users/aniruddh.yml
- include: users/growl.yml
- include: users/rain.yml
#- include: users/mspe.yml
#- include: users/pidgeotto.yml
- include: users/wie.yml
#- include: users/tomjerr.yml
- include: users/yximdoa.yml
- include: users/dovahkin.yml
#- include: users/philip.yml
- include: users/sancho.yml
- include: users/thekingofbandit.yml
#- include: users/golden.yml
- include: users/marc.yml
#- include: users/stenli990801.yml
- include: users/lytedev.yml
- include: users/skirk.yml
- include: users/serafeim.yml
#- include: users/dot.yml
#- include: users/virus.yml
- include: users/mandelbroth.yml
- include: users/victoralt.yml
- include: users/arch3r.yml
- include: users/linel.yml
- include: users/haivets.yml
- include: users/tux.yml
- include: users/georges.yml
- include: users/techemporium.yml
- include: users/un4ckn0wl3z.yml
- include: users/aewens.yml
- include: users/dex.yml
- include: users/vernon.yml
#- include: users/xallmm.yml
#- include: users/danielscode.yml
- include: users/haakondahl.yml
#- include: users/warcall22.yml
#- include: users/fncso.yml
#- include: users/fncdo.yml
- include: users/pavel.yml
- include: users/quantum.yml
#- include: users/gonthey.yml
- include: users/mononote.yml
# Normal Users
- include: users/aavtt.yml
- include: users/zszoke.yml
- include: users/neo.yml
#- include: users/init0.yml
- include: users/lugubris.yml
#- include: users/syncore.yml
- include: users/geetfun.yml
#- include: users/jin264.yml
#- include: users/camellia.yml
- include: users/liesinties.yml
#- include: users/hijaben.yml
#- include: users/delta.yml
- include: users/neil.yml
- include: users/hitomi.yml
- include: users/sakhawkins.yml
#- include: users/abah.yml
#- include: users/abimks.yml
- include: users/adam.yml
#- include: users/aewens.yml
#- include: users/akoeabi.yml
- include: users/amcclure.yml
#- include: users/andro.yml
- include: users/angelok.yml
#- include: users/aniruddh.yml
- include: users/anton.yml
- include: users/apple.yml
#- include: users/arch3r.yml
- include: users/arda.yml
- include: users/atdx.yml
- include: users/dingb4t.yml
- include: users/kronos.yml
- include: users/leonid.yml
- include: users/shark.yml
- include: users/stereo.yml
#- include: users/audiofile.yml
- include: users/bacterio.yml
- include: users/ben.yml
- include: users/bercik.yml
#- include: users/brendantcc.yml
#- include: users/bullah.yml
#- include: users/camellia.yml
- include: users/chispitos.yml
- include: users/clu.yml
- include: users/cyber.yml
- include: users/cyphyx.yml
- include: users/d34d.yml
#- include: users/danielscode.yml
- include: users/dariusz.yml
#- include: users/delta.yml
#- include: users/derby.yml
- include: users/dex.yml
- include: users/diabla.yml
#- include: users/dot.yml
- include: users/dovahkin.yml
#- include: users/dragon.yml
#- include: users/fncdo.yml
#- include: users/fncso.yml
- include: users/fosslinux.yml
#- include: users/freuddy.yml
- include: users/geetfun.yml
- include: users/georges.yml
- include: users/gokce.yml
#- include: users/golden.yml
#- include: users/gonthey.yml
- include: users/gooly.yml
- include: users/growl.yml
- include: users/haakondahl.yml
- include: users/haivets.yml
- include: users/hamlet.yml
#- include: users/hasbullah.yml
- include: users/hawaii.yml
#- include: users/hexhaxtron.yml
#- include: users/hijaben.yml
- include: users/hitomi.yml
#- include: users/init0.yml
#- include: users/isaac.yml
- include: users/jac98.yml
#- include: users/janda.yml
#- include: users/jin264.yml
#- include: users/johnc.yml
- include: users/joro.yml
- include: users/info.yml
#- include: users/jumbajookiba.yml
#- include: users/jundi.yml
#- include: users/k4j.yml
- include: users/khuxkm.yml
#- include: users/kpeh.yml
- include: users/kronos.yml
#- include: users/krystianbajno.yml
#- include: users/larasaty.yml
#- include: users/leonid.yml
#- include: users/letamesis.yml
- include: users/liesinties.yml
- include: users/linel.yml
- include: users/logique.yml
- include: users/lugubris.yml
#- include: users/lytedev.yml
#- include: users/makassar.yml
#- include: users/makmur.yml
#- include: users/mandelbroth.yml
- include: users/marc.yml
#- include: users/mks.yml
- include: users/ml.yml
#- include: users/mom.yml
- include: users/mononote.yml
- include: users/moskrin.yml
#- include: users/mspe.yml
- include: users/naglfar.yml
#- include: users/naruto.yml
- include: users/neil.yml
- include: users/neo.yml
- include: users/noce.yml
- include: users/olya.yml
#- include: users/os.yml
#- include: users/panzer.yml
#- include: users/parik.yml
- include: users/pavel.yml
#- include: users/philip.yml
#- include: users/pidgeotto.yml
#- include: users/pria.yml
- include: users/quantum.yml
- include: users/quetzalcoatl.yml
- include: users/r.yml
#- include: users/rado.yml
#- include: users/ragnarok.yml
- include: users/rain.yml
- include: users/redhat.yml
#- include: users/responsibleracoon.yml
#- include: users/ringo.yml
#- include: users/riska.yml
- include: users/sakhawkins.yml
#- include: users/sancho.yml
#- include: users/sata.yml
- include: users/saturnv.yml
- include: users/sebre.yml
- include: users/serafeim.yml
- include: users/shark.yml
#- include: users/skirk.yml
- include: users/slip.yml
#- include: users/smtpsupplicant.yml
- include: users/southerntofu.yml
#- include: users/spanmer.yml
#- include: users/stenli990801.yml
- include: users/swann.yml
#- include: users/syncore.yml
- include: users/thekingofbandit.yml
#- include: users/tomjerr.yml
- include: users/transfusion.yml
- include: users/trip.yml
- include: users/turboblack.yml
#- include: users/tux.yml
- include: users/ubergeek.yml
#- include: users/ukhuwah.yml
#- include: users/ultima.yml
#- include: users/un4ckn0wl3z.yml
- include: users/user.yml
- include: users/usernameak.yml
- include: users/usher.yml
- include: users/vernon.yml
#- include: users/vgk.yml
- include: users/victoralt.yml
- include: users/vigilant.yml
#- include: users/virus.yml
#- include: users/warcall22.yml
- include: users/wesx.yml
- include: users/wie.yml
#- include: users/xallmm.yml
#- include: users/xenialito69.yml
- include: users/yximdoa.yml
#- include: users/z00t.yml
- include: users/zszoke.yml
- include: users/alotl.yml
- include: users/yaya1.yml
- include: users/spike.yml
- include: users/grifit.yml
- include: users/denzuko.yml
- include: users/lagom.yml
- include: users/calamitous.yml
- include: users/sleepless9.yml
- include: users/stelima.yml
- include: users/gagrilli.yml
- include: users/hlv.yml
- include: users/baruchel.yml
- include: users/tryffel.yml
- include: users/fro.yml
- include: users/fauly.yml
- include: users/k0tletka.yml
- include: users/arten.yml
- include: users/realvindic.yml
- include: users/ramos.yml
- include: users/sem.yml
- include: users/greek.yml
- include: users/tawi.yml
- include: users/pluto.yml
- include: users/sy.yml
- include: users/roygbiv.yml
- include: users/neotux.yml
- include: users/n0a110w.yml
- include: users/stern.yml
- include: users/cypher.yml
- include: users/pkuz.yml
- include: users/h3rz.yml
- include: users/gjeu.yml
- include: users/Iyxbaideus.yml
- include: users/knight.yml
- include: users/wilfredex.yml
- include: users/loki.yml
- include: users/freuddy.yml
- include: users/iloveirc.yml
- include: users/nirvana.yml
- include: users/resultcek.yml
- include: users/rohs.yml
- include: users/lukewarmcat.yml
- include: users/xfnw.yml
- include: users/faabb.yml
- include: users/gfunkmonk.yml
- include: users/maqsoodyaqub.yml
- include: users/anterstor.yml
- include: users/markten.yml
- include: users/TouchTheStarsInAwe.yml
- include: users/sebastian.yml
- include: users/duitser.yml
- include: users/lonely-wolf.yml
- include: users/cloverfield.yml
- include: users/noteness.yml
- include: users/baloo.yml
- include: users/sriwafikadr.yml
- include: users/sillyfanboy.yml
- include: users/gyges.yml
- include: users/brendantcc.yml
- include: users/stadham.yml
- include: users/missk.yml
- include: users/Cha0t1c.yml
- include: users/farooqkz.yml
- include: users/hellspawn.yml
- include: users/kuldar.yml
- include: users/randocontent.yml
- include: users/chris.yml
- include: users/Cropt0.yml
- include: users/Cryptolover248.yml
- include: users/kcubeterm.yml
- include: users/genie_g.yml
- include: users/Kymonlucky.yml
- include: users/core.yml
- include: users/mirsella.yml
- include: users/Loial.yml
- include: users/beneskiwik.yml
- include: users/nikto.yml
#- include: users/seerlite.yml
- include: users/pokemongo.yml
- include: users/prashantch.yml
- include: users/Xiboon.yml
- include: users/Index.yml
- include: users/rolkoz.yml
- include: users/kjotere.yml
- include: users/linkzyzprophet.yml
- include: users/computertech.yml
- include: users/spockandprosper.yml
- include: users/logan3303.yml
- include: users/poweruser.yml
- include: users/hyperreal.yml
- include: users/raven.yml
- include: users/rany.yml
- include: users/tomo.yml
- include: users/arthureroberer.yml
- include: users/snork.yml
- include: users/xigoi.yml
- include: users/subhadra.yml
- include: users/vgk.yml
- include: users/GreenEyedFury.yml
- include: users/angelmage.yml
- include: users/deltav.yml
- include: users/famubu.yml
- include: users/riolo.yml
- include: users/catman.yml
- include: users/genvara.yml
- include: users/alma.yml
- include: users/thefunkyspaw.yml
- include: users/uberius.yml
- include: users/low-key.yml
- include: users/lukaszwdowiak.yml
- include: users/slaserx.yml
- include: users/fengf.yml
- include: users/axolotl.yml
- include: users/lesstech.yml
- include: users/sasaboss.yml
- include: users/crispr.yml
- include: users/ialokin.yml
- include: users/tc.yml
- include: users/whyorean.yml
- include: users/goring.yml
- include: users/q45.yml
- include: users/earne.yml
- include: users/Raoul69.yml
- include: users/julianmarcos.yml
- include: users/jjasghar.yml
- include: users/novaburst.yml
- include: users/1eye.yml
- include: users/kubikpixel.yml
- include: users/deli.yml
- include: users/fltk.yml
- include: users/login.yml
- include: users/ricci.yml
- include: users/hedy.yml
- include: users/zackward.yml
- include: users/jack.yml
- include: users/xlamer.yml
- include: users/mcornick.yml
- include: users/nyku.yml
- include: users/perry.yml
- include: users/cptpcrd.yml
- include: users/derberger.yml
- include: users/exprobitasfiducia.yml
- include: users/gzj.yml
- include: users/samthecoder.yml
- include: users/travankor.yml
- include: users/zerw.yml
- include: users/stardust.yml
- include: users/grimm665.yml
- include: users/danisanti.yml
- include: users/gluon.yml
- include: users/zer0.yml
- include: users/copafum.yml
- include: users/cloudsss.yml
- include: users/jimmy.yml
- include: users/ayb.yml
- include: users/BiteDasher.yml
- include: users/skydrome.yml

View File

@ -0,0 +1,15 @@
---
- name: Setting up 1eye
user:
name: 1eye
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/1eye
- authorized_key:
user: 1eye
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLiBWmfoQLv1NiUU5ixh8jpDJliyW/PjBq3ErmX7Gudam//0LnMQ5pb2w6JbuUrhVvjQrVkzbZKgBQUUxhmWL8CAq25v9b0bZUB+jgX45hbfxn0+HyQ5z0QJ7hC1FcZqAGUOo70JiB3/bSA/oJWaMlvMiS81u8fpX3NUTdSRSUHy9y0riCsaptylrX0hT4ScSGAFE6x9qoOEJh1Fs0ivAs1VGlE5pA5XUzn2672cpzwTy3gYJEesC+Ll0H9HK+c6nBtlqp9W8SNEEXFuD17mjm6yS3rsTtQyUj/46/+l8njskcLPdK3SMgmuUEoFce/6/IKM/rzjBfvSdQnkUN8uxbQegh2jDHiF2/J5r0z0vJAu9ieX/10QE6QeEUzHrwQjQ4nWjHYez0souJX2OsLOu55TBMIGCnLsK37OyVot2ICKQvLh1U4nsLvRwuE7PYrMLRvd1fl9x0d8iTkJDwLEWQzmNbKstjaBrGCMv30F2+HPXdfXAn6RjjrO7qYmCuQD0= meat@device.domain"

View File

@ -0,0 +1,15 @@
---
- name: Setting up bitedasher
user:
name: bitedasher
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/bitedasher
- authorized_key:
user: bitedasher
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDnoJez0KF103EkmjiVqftq/+1wKNUmoMpQI1qU8vBxI7N5cK1dY533MscM/G1OFC5x1a0Aue8UCHBnWbCMkRdN31G0d03ICCVsjVQ0c1O4xXng/54fRWhizAnMA7yhG489bp3/50jDrR9VSE3Rv2f8WIAZa1kwSYW+POGAVnOj2jjLEI3j0VyAUxTmPFPHyR0Wg0AI99qdEAQxdDEOLW8GYX37ywl941uAAC63FispPacpv0KyHvytmKwewR3+JWX5tAZqJkCjdQQBbPyk/ZVWYS4RM37qSX64SgomWR0w0ur3gfgB6koI48+WHuw9fY2EJGer3sZQ4B2wvUh/Et5k4hLGHdoVYp8wAqYcsW/5vbXAOY/KZGbN9dHfSv+/gy2DocK3WamW6CRwn17u6SedHoANEOxme+28cyFnm4yKB/XalfQPXVrtDwv4mvtSe92rcYTjiPhq0v0XLzP4Z6Dj9df9qvrqReMSMSqDM1xKb6z8Oy3RxD9d6ZpqB3J9ZNKCkbTeJ9z5LjqbWispjizE60fqd6jR10ylrbG9Z42aj4KaOuWDWEAWgq2o18XZORx+k6J6JBkR36P3Q/OVdyhVNj3rqkB7Zvwt163lpZKNumzH8DBihd/Or6pKQj80DM0i+lK3XpYjbJqJw1RDjaI41yFXWQ+fC9sa6v11WCIXUQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up Cha0t1c
user:
name: Cha0t1c
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Cha0t1c
- authorized_key:
user: Cha0t1c
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCjbeAqKygyD0ea+495lIaJ5u8f4nGikhGb5BnoPSHnphysOb9Ky2pl74sr3AFTqdu5uu8q79od2aoZvgHEbmRynF3b3LDXfCXBIUtomlyN0lD+B3L6pgH9FssPuZxg8QQCepOE110ILT3Z3n02jlK0feqVbMQp8MjUZNTcRsiqXwYoqSDqBny9hrhdn4Vnf1qmNYBC3sUjM84prLi/VupmN9M4brBHj6e7QKS4FKsfogl4Yog8B8qM2/iTLjqIxsDiy76MFMqZzE+bCccDx/6UK9JOF35umreE39cefdCT7y0hlgjIk7qcxqjsmJItVnLWGFHtYSUbYLM+lC23qXx/ cha0t1c@home"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Cropt0
user:
name: Cropt0
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Cropt0
- authorized_key:
user: Cropt0
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCiGhZqVuBZEfmElqwCEy3L0E7qhRsj4wJ351q8UdpHGDQ22D05sOizQquCWsO83roLLp5x8/Z2u1BtXfCxmIKcml9CxxBwGfPf0sQFbUlmpLcxYIvMFBKjUd3up9dEebRROkznU+1DFcQoJbeaVRP0mBpg9g0lgJYODEdN1sI3pSM5BOPtHwU8l4l23bTK/iofOK9hIvUCEVZWgjioJtEExydnK2KFhQtan/mb/ILoaQgjW4yXwOLOAswpg2eSDdFSGLfLaASsYo2pn2kXXt/MyIHa3doyywO1k8ViXCXig5r52J+Wvb+yQXrJa5FX8fh6Vpa1ryAMqZwThEskP4zP kowal@DESKTOP-17Q6I0F"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Cryptolover248
user:
name: Cryptolover248
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Cryptolover248
- authorized_key:
user: Cryptolover248
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDmiIH8N7cURCq/Cpi4QoM7SUohfrLuneXlp1xf79vAPz6vdzGOkrSrw2CHJjc980aXZK5aQxqW1IDWaXAL1Ob//RPQdz/UFw/RMMCJhD9O8P2KGqO1gtgGrZmQzrrFHjCakD4XABnC7/5B20tYAd9VPitGUOgJQwliNzzsvKY/yLJkSLi9pwoFQaQ5I1UhA8ah/8fHMAn2UPcGzc40wQpoa4rcxG5U5xi7/o5qDIxh8/RqIlKc+m5Ppx2E6PdawxyAzOK0Ww90vFaelExTJUTfhJgSt9ldfiToIdR79eTJxyriDsH8b5gsLNE5oQ2PnG+aieqMP5jHAW9ymxEeQLP root@localhost"

View File

@ -0,0 +1,15 @@
---
- name: Setting up GreenEyedFury
user:
name: GreenEyedFury
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/GreenEyedFury
- authorized_key:
user: GreenEyedFury
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC8qnzP0Vowhlt9edpKgb9clGKvtjtcA6I43eDys0xuU3WImZ0wApEAYGskxfJPSQ/1qqfENl214QwBzOEcw6tGyzDl2LpMmUidJi2wwGSp/RCRka0wS2MdmGxo7f6E57p63n+keiAsVMk4prJAsbTF9cq5zgUyWaVy1EDB4uFNR4Hu1/tvSwfDIYUIXJHJZek5DFKuPmD1aenpnJaQrxG/CykT1edvvxM0lYFeDCi+D+Rn3DAmPP+VjBW0DrIxmBnFzHDMHgMqua7r5GxonxXUIlpb1zucRVWHcCZqMbGC1XeLDusrKJCXxna6t/QEJ9LV6rhpsme+NA2zgWYlOmZbmzwX0VlfU1CrUKkiQTsxZOU+YjnOTggwlY76bQLvF75OzVYFsnXW2CznBDI+UPBpMpK5+7H1Bxt0TXWSNxwHUErQKrUJ6dHgwEcaTj17AjUKj/F+1Xl97o/OChKTw9+hkp204x91VDwRv9sNNhfhjRwhwgd8o/l9BXBE33bLHDs= madelyn@archlinux"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Index
user:
name: Index
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Index
- authorized_key:
user: Index
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3VcsIDO9+sdSNEJBzwsXAbYn5DPNQrIlhQZVNkpV8A/EKgAJ/zgFu/UsE4QOZ0acRN7BEM/R6UyIyPUfUcPhRjRZK3GXqlaCyUgKvw1xEtNcNmu3TCDf+hVlka+H2al1/Z2h2QFRl/qOmrUqAJAERwClXd0s7TCJVbZXnPB1X7yZ9tvxSLwwpBPcclK2nrB47sT5kAQelWlZw8EPlEfdht8G6uEb5+JE3I1aOhbfBIp5dq7LUPcLHLSOc27ZAb5Ln1ylGqBXFEmEeid2/7tbmBdqcfpEcaclJjBnh0bBfdTCowAC+9iayhpbGitv6Krao23a/eIMvMmsJjgEGmTbkHeUzzKQHMmqoiIo1+XZYtOH5RRzWH2acLUtoNIyGXG6/v6RN8Ivm310FdzOVqkg0drIYIgTV1U4wPnPtzbqbfGgKBfT6b/zLJbBLOBA5x8AtfN/ydhaGbSYfD9DG2Sw7CwRsukMKC3pL8nrrurhZVeeGHKqIaeppdkYmRGRM5Uc= dawid@MacBook-Air-Dawid.local"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Iyxbaideus
user:
name: Iyxbaideus
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Iyxbaideus
- authorized_key:
user: Iyxbaideus
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCajfGAupsEk3bf0zyRBpHwFwvJZ2koMIW5WRwOedJT/QHsZZ/Hyk35cjMkyCG3387j9cmvwkp3cngTNZWB98SG0KLD3w71EhQdJNBk8etOzDpXWdQkBeQqD4Ou0fd3Y7iiixUXNU2nspdlB9C6DDeX6uCsZG6S1/cyVnp0bHXHrmado2tIZdBvn/tTGhGwq0zSedvEyBZchiAeGcj+n+DFs0rGNpe1xjj9e9qKyoa0KsTVbXlVmUVhGZnXpk2btn5THxMHL7EMv6Ij9kzAfy9JL7TvUdMlHbRQ+nrhn+cABlJ1WJ1vLMInXASoURciArLiHtJ5bUu5Gq+4cssD8eo7 pi@raspberrypi"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Kymonlucky
user:
name: Kymonlucky
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Kymonlucky
- authorized_key:
user: Kymonlucky
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDC42QRg2dUzEpItKbn6o7Aw2WpfEkE+CJTK0XvnXFcpnzsRdLsBP/xjiiN8+tl17wv15CyOqWOY/dhW5rbHQ8Tdfirk9flcGZaKksSr+GRYXpmZEemELoNB0x9Gj5D59fXuSORNakSqrEifMsTfejvZJwG+w2boCPB5lH/VvAweK4AjleePuZ6wrqf1Ot+620ijL2+GpLDJXjzCD1SRwL4M9eVAzmGmKI/xlOTiREV26z+PDMJxU6EUSUpimZ56wZCJ6YKr8d4hIBxc70foZFa7v1EZ56Ez1NlqtAs/Y38qaKL9EU2xS3L0j0MKDV4b0RIc6qgpFHltusoevggml4B root@localhost"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Loial
user:
name: Loial
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Loial
- authorized_key:
user: Loial
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDYUBK7u/akGkpUGqM3+siczY+STES6ggw6XAJgY8UOCKzXeUPe5yES/AD6yiXKzW8PWFEg+tLvkASdGSvz2eEk70klYo1n7FLDzJRwbHmXakTHB62xbQYw4mJdeLX5ZnsrwsfTKxwHxqXdxX2G1+coJ7pt+u3Q9dqF2YMtQnBxwfPMWLqsfXZYT3DodxAm0kHxR5VzV3j4bxXeB8oR4tdofRBwlatvV5bjBvu9ZD1WvpW7pXSxmlGOOHR8xdU/AnnDYSZVlJwPVx/AdpMlVXwGrYpTK1C5Nz+THVsnBNCMya2HlvsPp4WBW4qonyp6q3M12T9MqjCqAfLa6/PwWcx/ herman"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Raoul69
user:
name: Raoul69
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Raoul69
- authorized_key:
user: Raoul69
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDib6nz4OA2wefct2m4h9zpn9oirZcXM04E4IeDx3K6vUEkbjWa7tbuhV8xtylP1lima9pguvtFnRlLNQIzmyipKMQWtC00xnR981LU5p5387M4va37Tf8P9ZBLveeS6kE8ACbFk8XGRKrsJhaCYKMQ8D/JhYQW149MLRAF9TMtaaqm9cp8X+I+U7prBtfYzXQeVeEdEKEfDTCStu0fZw3wEX/uoVcByswixmuApRcq9tRoNR5EkO4WMsIperDGG9lJgYrbitHSkwt0Znsh6ductWV0VqPZZg1PdeAiW7sC2oLToxXB57NJigr/xBKQGIVM7jlBYL8N/Auu7FH1WLaqWAenGnkHV+4sIaBc5qMkE7FACydU1uEGN8BbL04SlhCyzEp/eehrelhEa7XNia3J4lAMXS89Zm8tCBEQ5mEmEPsNcI30oDBWKNwcKFv1Hfzu2uQq5doPlzP0VKWY+qRji0IV1zYu83sZXorRtrMeF0zafXuRcbPragk+ENm2JT0= Gwen@DESKTOP-S001Q92"

View File

@ -0,0 +1,15 @@
---
- name: Setting up TouchTheStarsInAwe
user:
name: TouchTheStarsInAwe
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/TouchTheStarsInAwe
- authorized_key:
user: TouchTheStarsInAwe
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHnr/1NU4bngJzb2WlXLvJqSl+CbUdoRIq2jCMJFRcJ+djmTMxka9MuLMyfmcB8DBkuO1Rzplyv3IE3/94ggs+n/XcO1FiB3GAyomeVqvza5hofWoVQvTU9Wsrs8F25JX8QOw66gqQoImimUHPVGvvT2gwuz8bNhgRSQMiU+M8rjiqd5dGv3dSOI41kOr9/n8a3sojwK8fnF0m1SILqa4QWQCURCcYX8Bc072tsDsUOT4pkzaYf+5TPz7PuKfRbg/EUTfsV1nKY3PK259Luqy3M9FNR+VBY0yS/mF8c2IC8994Ai/zZ3IkCezP5YYcBvUk/E/UrA3olMudFwtD/6PPLNrfZk+X1BrdK0yhP8Od5uTqRPnFnCw7GSNECImQMpZt1IFm7eB+H+r3v67hnhd8Ug3iwMzOYNJVz5xulN6C8bgOp5v+rRzA7OxOQaJUgSMa+nIqLPdbynDPVnhyLUJkx3USe/U1macOcqfv0+sc0qriAya7d93LJbOKFZFwgM0= madelyn@archlinux"

View File

@ -0,0 +1,15 @@
---
- name: Setting up Xiboon
user:
name: Xiboon
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/Xiboon
- authorized_key:
user: Xiboon
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDNUH59YNMZgVWeAMHJztPSjG8B29o4pw7Y1PpEa6ap/OeZUNx85N+BgJktvaduOLC45FJirVGhE/gAvse482ZD5U2dn+3LU3v0ZF8Mihtfb+j1PuqvNbP4AyaeZ4Utfknz9t04YhMJP8FQ34Zj5d5+swZIlwv66so9xucm9qH9LVoZ0QOZ2ES/0UMQ4MLghFgMAwau+E/iFox0CjuFnwIx+iZMJcaBP6iT0JpxxkjoqHHYnfgHzEoTAiZ7kWVRY7AKUVZaGJjm9Bs3MSgO9I65DPu4LCPnSdpwoeBHW11qvYY6ETWX7Xcy81fv54D5rYKSGSx+4HNhQXzwRzY7zDY7"

View File

@ -0,0 +1,15 @@
---
- name: Setting up alma
user:
name: alma
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/alma
- authorized_key:
user: alma
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICFIttcpz0eFOYh3jUVw2NRST5rAFFFFPWfn6yNuuhat alma@laptop"

View File

@ -0,0 +1,15 @@
---
- name: Setting up alotl
user:
name: alotl
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/alotl
- authorized_key:
user: alotl
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCxR5x7ccQwiWyy7e6mo+vxxmebFlZjoMX4GMeophT5RbIuBGJL9zeZy4cNDHYkF9COq8VGtPWLUmQjEzyHEOdVcibOo8zZfihsR252H8fdjjqxTqmYRg4Wa548S1mboXKUO8qPQTeYJ12Rz2Ql3qG4yPDhMxikeuN1WDuAddAyDem3qiv/IT/PrtBbnFdT60/a2vH/rA1lbfsfpJ+T1RaYpDnqo8mqhQFty9hhUzDSmALaF8OGEqh3rc9to0iQGPxGmN8JH6gmtKbkHzaacDpjut4uw//qUz/JbGOhk4rQ3B2Y2enuEuTf1FzqgsNSRCEq/kcIATIQjv5BboAhKEPZ"

View File

@ -24,3 +24,7 @@
user: amcclure
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIMF+N1NxdN2SBb7Yyk+d4ThVoO87bRSYhEqgR2K9gA4 amcclure@lake"
- authorized_key:
user: amcclure
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGCA/TGxVNNVHevXq96yrMT3suUrPO+v93NqLC2wjEv0 anton@antonmcclure.com"

View File

@ -0,0 +1,15 @@
---
- name: Setting up angelmage
user:
name: angelmage
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/angelmage
- authorized_key:
user: angelmage
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDCmzdCEZOG+hrvR+6UK6eLuHYkpz1rXgwa7l54VViCt ed25519-key-20201001"

View File

@ -0,0 +1,15 @@
---
- name: Setting up anterstor
user:
name: anterstor
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/anterstor
- authorized_key:
user: anterstor
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCk7fZ2sli4YXz+WygkWiWV+ndB8dEYKTVVGQ7PKiohETz5RaJCDb0C3JyvYdJG9MKVGFS34jn+hZZkrzxZZkyo/KPzkywp7t0zf4apW+s5V6Lvt2BQ730qKocFfGoYIzCD56Iu2oB/lQ6dEXbUxQi31WwWPwBAAf0Ik0+diRm42bboK2S3sfsT3PEr4StWi5FSXKJNbGm13bPOvLHBZuXeOhOhOc8uTJnu3c8cM1BqQDbeC1ihT5WoaYAGZ7dzNNKhXe9uPs+dlwW0RNM4opsn3EJsur1kKIu1B/M3p8QkgGwOia7WRbOZ1Z3b2qPAcf3U8ZkdOWj+0ErHurOsnnG3 anterstor"

View File

@ -0,0 +1,15 @@
---
- name: Setting up arten
user:
name: arten
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/arten
- authorized_key:
user: arten
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmUFjzMIDPz10v7wP7aLf70MFgGlFEPXz9y4DG3OsaJUM+/GMBLs7hVNro7Z9Hv1eHH/h6JKmMS5Elnil0DIJx+72ozc57kCwwRfDAr3KISTE9uvHoPTuaxjywSHheFgNNI8PynwUnhL+LItPdDVKCmvjS3tLKWKIl9RRmXGnsy8rjoQVpETGzL3zkdckLXb3eM1XSla+UuCVIR2z7koDvwJ1EcRxm4rOQPz22A0FJIz4U0619hRTI/9nBNa8dmFPGnLqIdTDjuasLFCrBxTKcA4+AESvRDvdVUy0NE44AqEEiMGcTZ+gMB/55aB/V0HOgnkNL+zaL4gR+ZIEhVU8b"

View File

@ -0,0 +1,15 @@
---
- name: Setting up arthureroberer
user:
name: arthureroberer
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/arthureroberer
- authorized_key:
user: arthureroberer
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDWZf6XtAkQZfdYhK7jXppQeqRrkB72mELZLz+GYDEdsD4IikHmb0j63+rAxmI+svbxi4zD+W8PkNLDO5PInC7YaIPKP8yZqxvQgdSoqZAPPgj21ERb2i/pJepCZn3k3nVL5ItMcl7tC/u0kU6tJ6LHNYHdKBbZlNJJ6NZm+gt/RvJS6deCCG8D2JoxoaKQNkazuCgAs7WQPobZE90xWRLnRhTQ9Wiu2CanzK/79dYAcMmhx7PHIyTWyklGAsX4vvoSLzVZGN3X+iC6moQ0yd2X/KkyZtjMI8VMGaplAAfnUuIgSkkUxyv1acbvq51vNrEiUlVzKvX1Ud41Jo4cC0G+N/ZqK9mjYDEqUMtJOC//MbQEbWUyijbZv/WIJbbdSGLpT117omC0aZVhtTjalY7N58PKRlWCgEgUIDdk9M5IDlZhnPvQ2ppUtGOFf9Rdp7j1/zvvcCnadXgdfuFeuc2Ns3DjygshohhVEumvtUH/uKz3jBqDBM16kAQPYc0MmaE= arthur@arthur-computer"

View File

@ -0,0 +1,15 @@
---
- name: Setting up axolotl
user:
name: axolotl
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/axolotl
- authorized_key:
user: axolotl
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDVaKCuGMCDvwkruYiJnhCVOq77z50EKWTEjnGPVx2C8"

View File

@ -0,0 +1,15 @@
---
- name: Setting up ayb
user:
name: ayb
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/ayb
- authorized_key:
user: ayb
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLZk6JzqlxqrtfFkN63AbI78bnkO8ZqwyUuye2u8WTGH7Bza/3cvnvkOKzp43ppY9/cN6vtK7t19JmgD/MtgIePwHdi9yCmiDK+dSOLuDWjvV81itWuFouCg8Ji4L3xSxaDPwE7zWy0CorB7y/JoZ/M1KdWoLtdPwz/Mv0IOCp7QrUc/UQ1F6eI1yHG3Y3F7O/+sr2R2xeA041s1FKEj5Y0iCUadTiNEyeZDnldiXclStaFqfAMmfgQ6cJ11eV8J8dCUi/A+IKl64K0Q4/MW7Yu7oexx7VLS9/8Mg0j5YTQJxEeOia1DH5jQduQoXdJ6SiYArUZW9SREFTx/SV0Dil4KO2xjWxrFcX/IW4jhYmwF9KWowp55/lW1WIy6Q3ycfpZ7gU8pnfWkRnLnW1Id13Z3Zp9S3p2BklfHoqK4cO/bvwwDM27D68IM0AAHM+LlUHX8V98l8++RiWGkxowZ2EqCQX6TowGXdl6uQa96p6jpRS8TwAobFE7P/Zgks9cRk= aghilas@desktop"

View File

@ -0,0 +1,15 @@
---
- name: Setting up bacterio
user:
name: bacterio
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/bacterio
- authorized_key:
user: bacterio
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC14jVKK8/cNaerfumybkwXORyp55E2AYdTYhj/2EVK6lgLpfK+0MrrDa8Me1kMHRURfeFfOgqizaXlsDYTW2iP0GjWRwd8LEZReuJiMtFpiWRJ0p2iM4oXVmL2DY9rGEDor2MPdDkQkfv3XtXQURKy9NNRoW8HvUEQg2ZzJOR3p7JBLMxPYouQzglT49IyXYKHh+tJKKaUH8sJIgQT3w/t3RSNeGNL3hh4hyk0ofGGsC+gBLJcPs4DkrjtArl7ejsTYVZsEtExrTUZwTotBSEYNUD7VQp13onpf1I/RIzC7kszDuQvcBuysC3mikTz3upa78owY/vGHBe60LnMlxlKEPVPAcfrWbmiAtQBdA+7apI4gjm4w0ReMxXR+81ju0KBE+bPVaKi001bLyIU01Bf8q58+MGtCvOlUDR2SITM2dbu7v4Ow16NIgFBl0pz8JWLt1zQvd8PQQny1Y9sfG/6ghQw8xgO/ngiyLD7+3uu2zILiAJUwwAKfhmaIV/7RH0="

View File

@ -0,0 +1,15 @@
---
- name: Setting up baloo
user:
name: baloo
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/baloo
- authorized_key:
user: baloo
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAhZJTUh0uAzZl4B2gL5M5QaeLSDh8fZMlCNZqv7LY7M4KxcsoZrMzXhHmH74n6/ZStaYMpXTrlHPvU7hgUG5HzmOb/osgAGVgPoTZV7xuC8RsbVFqXWFl15ihH++YLdDgDh1Oc7of4xIqPMdaYp6zAAJ9K2lnNPTqfVe8ovmaDx2VaqotnI6O0WSueTvGrtuERF5HJQLxiHduSh92ZEHeRzIy8k4VRNwUIz2VuhD+UzF5ZD4yKy+x3SC61AStVsrVvimgDPk64U2pkBtvSNzyl5wEAxmp4BjeBnNymhTRuyXOc0XaexgG5dJNiAxBOYYfQbSDe8XT1TskE4GlseuF8w== rsa-key-20200601"

View File

@ -0,0 +1,15 @@
---
- name: Setting up baruchel
user:
name: baruchel
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/baruchel
- authorized_key:
user: baruchel
state: present
key: "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAHTZhSrwelTaozpc6DywnOhv61mXYll+ITGB4huRsLrfQJuKcv3HJpdrwSPXzGzn18DyFixi+dTXU5koReAw4FXcgGru9ddKqaf+eUn9xn9h4V4ltnEXD7CLVPbjWUETyaJUlu7OTbo7H0Cai5nvn7RNP+ViPix+d4VezGVDt8HizjodQ== JuiceSSH"

View File

@ -0,0 +1,15 @@
---
- name: Setting up beneskiwik
user:
name: beneskiwik
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/beneskiwik
- authorized_key:
user: beneskiwik
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhd/uAF53+KWYY4KM1w9NazOwXAVK7wwsUAboDUMy08YCa2VwMfxTWrFgBPvHBshsZ07uyoK8x0NKW3CqCh/ZHPb17SmfTllHrz6Vut6JRyPaqSVQxqA7bMPxv36qdrMT4c+MKvRJvHC16PVrx2pHidTEBDk/m62R+E/a/4RPYNDDFXsmQ7K8Fon/ZFrHjfA/xvj6PT+8zBEc2Ru/gV7W4hohej8y06E3zkBOx1MHpyWSCJAW8sWpTC9s9nZaGau1ECXi4N077iHsRTOmHF++A6y8d+KcADCSrSLxwN3haL81SsyZ8w3DsAv/gfVfrN07RiFDdRHYIalcFC2Knr0UT"

View File

@ -12,9 +12,4 @@
- authorized_key:
user: brendantcc
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCwZ5nnwTjkAE4F2Fg6NiL6SI5BsPXipiVhmqyPFMqTAGJ6SJ7wbROCpRHC0yBVYTRRNwMy3mvPXApXF3Xp8XyDPxeqe+MRbyBPlvYHXaY46PlfqpuVSxqexNbmjsu1Evdh6GNPKTd0nj2To4rqO+yO/B9JuotQtF+hqtz87lKiX1MEYtZzFJlPWj1N5j/pfrUtZfTQ/FwA4A+KEIN+v2RsIB2HH+mDTbDyJ1xz9/155iaYkBisixVnyZ3CoQJYdzDQkU0v7nJ0ZUlrs25LvnIHEZ0AF3z2lvGipqC1meDqvgjK21JNMRw56szVAHlT/ByKeXRzAbcSuBjKLJiD9sDh"
- authorized_key:
user: brendantcc
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBXAKn0gfQNja+YUlXrwCMVI8WP5KigPDrOzbK5rRNobkjVQ5ix4edporfC4kw32mHcDavx0epFZjTf6Wz2NCchcSrT0e6F6Mo26u0Ji5On793McMWyXEu0d4qn2PZBDLqartFY39WB5fUzF7yA752gyf9dHE03p4BNWBdQvWtGQhNL9VS8jZ9+ejbxNwsvl89of7oLOMFs9L45FV2huWDKelJEmKqRNYiS8AK7eOKApgVtCiSrMtptqf4oKSWE5niP7UDQTcFOBt8/EgzPNaOj7FFulJl1K0zkp6wxFMgeD9Xfk5nw3xDXqfkyjKA4jVqzScG3F46XZUx6dZEGWAX"
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1gRGgChQut+E+nP+4mzAymKBiE722w/j2wAo53U49kbpWNMQTPPyky7jIqMQMKFbtgE0WLe/D5+ut9lumcnKuX1molE0mPKwbK8LSVO/+fICiCPzTXvdAyES/iMiBdUB9G518unhCO/dD24rH40kzBcnX6LJXM4ZdkRor6gm1y7i642seeMzqHaOjAmA6sUbDkk9DuypBzSf317Qq8i06LjyNVIXJyJV83NBT38ruZoB0Sl/q+4w5yJeAegxJlz5ZWUwEAhDVrWdNdgYV9xhMJxEZclSteicvK+ef36CaUepu77AKIFVXuKhfECKZWjYcO0niLlBxN8mPBSeaEIsv"

View File

@ -0,0 +1,15 @@
---
- name: Setting up calamitous
user:
name: calamitous
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/calamitous
- authorized_key:
user: calamitous
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDa+9FRBuS6acIETpgBtdcJIv4jm/QyRHfmOdPJCwD/QxFygzKFYjogp+uysiicIbvO0dZbpcMVcdI+NkSKkF7KKYsMU2KiLChh/nhu1GCDnLEGSedTUuCHjU/XQWAr9ES3zIs9DvwcAj+o1b0EWNzFXCJd8Umyji8jlY2W8QuzgKs4oiiyRCHOTPzTP5UsrtI3j6ktbyQ71U76dcC40aZha2tpQmK9aTJieaBQxS6HR7sZLHqFiKdRggiSQouQLHfNJsWnJOBqlKxg2KZqIuhBlbCJ5nBJCzIOiPae4b/arcZuonEq4q7QYTtVoeYuh6zalSXWf5hd2kMIE3P7YOFD"

View File

@ -0,0 +1,15 @@
---
- name: Setting up catman
user:
name: catman
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/catman
- authorized_key:
user: catman
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK1K8HDOAeOUFj8VFW0eYFtI6ZnzcYrfC2mdVPOxaH2W steve@turtle"

View File

@ -0,0 +1,16 @@
---
- name: add group cherry
group:
name: cherry
system: yes
state: present
- name: Add the user cherry
user:
name: cherry
system: yes
shell: /bin/false
groups: cherry
create_home: yes
home: /home/cherry
state: present

View File

@ -0,0 +1,15 @@
---
- name: Setting up chispitos
user:
name: chispitos
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/chispitos
- authorized_key:
user: chispitos
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAxOTXVUtz42e9ncMLb6rt0dqHrotmq1D9myKh2Z8f91MF1MyIivFX2QN0wUnDkSzB1gcf1dXF41Ufq1MoMDrAgswm+d7sGuuXzXTEhae6jPYx42/jTxf1CwKu+Ko4IfcZuHwLFydLMJzT4Yh/fqnhQm0FFoKOu5cbY37SvYB2YO3iXWAoHEjStU49IKeI3W5FDhch47l5PI9pIR/5z002C0hWu+8DJW+mLAuvWzfbD+EBnKJ6gE4inmA1l9oak1lhv9RhcqtaaIHJycRqF6s0vikHLowOLS0WQXqSEUcG1vdarNrGyVTS7N2rEnA4kCf9jr38kGQG5kqQKYpDdUKFuw== rsa-key-20191219"

View File

@ -0,0 +1,15 @@
---
- name: Setting up chris
user:
name: chris
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/chris
- authorized_key:
user: chris
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDR5XPWKRlzSV/y9iLkn+MCW+fiDZpNy3Agvj4+dSOw/4k9kPMRftsgOdTIhbmbEhtNBk0vDUMdGXITZ71VN5G0+mkecW6ZC8qM5kB45SLjcthf9gpKPqfJGgwN3hLMQIRnsYHNZTOMdqnI2GNUt+JpeflpLAY8rn7KY27WPrdcpEHZ1qgv//R+xDGxROlJTOySPmVkkh+0SRmKQ36UuYzcLNYUKVD2f8hp8zdBgSXcMmTbCEf0+iunNZmGE2DvaMb2OwkyHmONLcj6CatBFecRFMYtyVDjtCF7pInxfYzuGiQnME6qKO9RFouxYJbeWzXlS2Hln9KuOcJz0MEzWaOhb5nnuJ3kOzSr4hfetJm0MIvuXxjeXbScvf0Am+dgmI5rCWsAsu18i+kjQNdBXL5+EFzebo8DmKOfV+1oc9v8EFAwUX6XRBNe9hOsZ/Nj7zxejeJTMZGVfLD2mhTnOnMqM2Ot+stDD0PzjTG4/a9OT1t7bNDkDfXNi/eznTXBhB0xHVJGeB8i39qLR2fCDSxAkqotIT7bR80yqS7CFYDheNWs8hDZ2Psqdzbq9/2BKM9eF/XIsz32K17d6kojHX/tbQB7maMlaMj7uJNJWDyRYy0jS6A0/o10QXBvRyx6gQL5HrYaNQ5YVYFy1C66EcuS9zP1iTm09f+UhPV5f7zLoQ== cmm@coretxt"

View File

@ -1,15 +0,0 @@
---
- name: Setting up chuck
user:
name: chuck
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/chuck
- authorized_key:
user: chuck
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCwRk9WKR2Wk+JCPMT1GC90IGfgZqRlDXNaCHb3/+vdUMlc8HY/JhU/EXMz4enxHugMv6ZRmRfzVSvQ7Mx923VpHY2zqLuZI7fzc1+voffAY4Fq7/eIcZEhVReSWZ6DGmGhGQYmq/hiONoUDdld9UEzQhKhbJP03tj4KvFIgoXtSa6gx7AEvNz5jQc73RQcySeOwE3Sca3F3QPLVVkooFfk6U3vpz1PEluyrxvS6Yyy6LUwJ9UWzHXGslG/Ww4oQc6VeIVK8BtsDmkMOW+jGU3js9b+Y7ek/o964Pc19fb6FtilbBBoOB7d9wsp5/sf2ZnW/ZoxlSQwvn2MjlirypnIARJGOocG9Tmh5yT8p7AHZqN2ZJiGiN+/yM9jYsU5e34GFyKPglvcEw5BM8TSqOrhADA58oqUHYvbfg7OgHnETG5jpFwOnSq+KdU9ErhNZ7s89Xd8XOO4FJJSjduVkrxG1d0EIQ7CPX2AMoFrcuGUif2ImJSlV86lse2KUMzvjwC/vh5gpfmLu1opVID4XB4PCR8jPW0QGzjY0fMnU/pHPpssguOhfJbKLddDWJKFTl5iu5Uu0mm+Nd2dHNZgFoKfr/bZzgQmNBHDeoCgwc69sttZBuFiJ02IBGlyb5cFJ8am4FgllKV3ZA61yQAdq1jon8z1vAoz3S54mQ+l+iX8pw=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up cloudsss
user:
name: cloudsss
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/cloudsss
- authorized_key:
user: cloudsss
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0ZMFFl3dmFnoPwO030yVsVwwC+7IjDPSs8NNqAMT+/Is4QAjQQzEi3jFZ6uno2PlmdlcNaBC3ixtTTYJpHtFha8zZSs41a61hI9Gho960uchsHrDxqQhG+DuJidjVn+divN8s+icGNTVnaOpHgssq8y/d215kwD90GiqhzLtlrB1ti9AGcR5BfFvWwmGiWTwQksqoKNxBXL5C3HM3Gr9ycOsKJoGsipQbAIE83k4LDp944wCafzW3OOxTjJaU/Nrl0n1v1OcQBTJBr/2i90IG0PmCxXRr7UepJjjTLD+ziO21zlkknO/whqE53Fmkaunr3b+s4Yz22EauIs1Tc+8P root@clum"

View File

@ -0,0 +1,15 @@
---
- name: Setting up cloverfield
user:
name: cloverfield
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/cloverfield
- authorized_key:
user: cloverfield
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOb683hx6TR8BX8zXUwT+DwhZiEoCgRnEmF6GyDAXMOG+9ay8L05ggSDN2AGkYqAqRnv90tro0I0vXgoXDcHIICL587nuI8X9tZ4tgPrdi/P9e8iNu8U/eyAhGmmIFBTh4eikgcSxvdrBa9cgg+GIUpkAp6/E/hmnh0OjbVKcItmjEx6s4b+8LpqKMid9JWNKcSveUVVEhr7Xei7DPF9RRrBDQJTB4QUGPW+IeeJgd+nJY04h1H6ED0VWCh/2sBA+7PxYQKxnrCifO4vdoUa2AMulFuwLvdQAc5uwvYYDKXmHgZLLZPPN2udm6B9O7JoLt8kne34r+cKfM/IHSd1bl phhai@ikigai"

View File

@ -0,0 +1,15 @@
---
- name: Setting up clu
user:
name: clu
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/clu
- authorized_key:
user: clu
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDep3Dcw8VufXUAFSv97AXuX6mv4kBPfJYl8vqLu8kQRWiJmYhjL9rZL09Nb+BdqddtJUcxtVFGrlOkWiySbAjzU/VhorxII7oqtmcaX4RIMYeu9+cbogwF5ioyWLAM8EfDoIb93tW3JBlXwdHoCsQxCXmiPunqc67+dO5g9EHHMaivVuEqGpEoD1HGW+gm/083fOo9/j3MqsU76fGfFteBXMmdwLYN2pD4mb/nbG5Nn9Um6xaO8Uq6A329ISG7FtOc9JZlyH/Egd4OI1pzJHWf/yKNxpT3fEoostd5Q13Wygxco2yCRgnewfY8oQKaBTZVZs1Qp+++gDf+0SSQzmHr clu@mcp.program"

View File

@ -0,0 +1,15 @@
---
- name: Setting up computertech
user:
name: computertech
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/computertech
- authorized_key:
user: computertech
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAqyhQb8j3fnboRZbe2UqyUs1IdWOPHIJKAJDo+e2D2rC12e4CcpAX9M9/+jxSG6BINXLgwfX2fqInEXu7E6/KhfKuxTfrJVtFVKwpSrelQJG2FDk0+5TuCJyv4gTcV0c/3HyzVNmbmGWaOeZcLiADdOYCr7v0rrSraiCPWOGXXWR7iSv66Jfz79acH+jit0fIF4Xsbc4FMwz0SxHq3gYmq+WRSjrCQtn7CLyGOwzamwD1x3FreZ15Q+Mo1oBrG+YB2Bzt+UrtAIczk8dq8E9J4dCOHgDi9Z80NAhu22fEK1X6xon78/iXKtGIdKYQrAUQoorJ7mdS1d7kcIO74wvMKQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up copafum
user:
name: copafum
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/copafum
- authorized_key:
user: copafum
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAvd8E89ZKEtQuY7L55MqST2ch33nRyxYz/KtjrvmNMmxK8OmvAP7MfJtfSbHaKYnqm+N82a+9hR/Z5uj0aGJ44CpJ45jzTOc2Mg9ojUAWDI6jWxWDsZvn3K+hpXpp72VOtZ/0Yz+vdHWI0e02qRI0wXMAeEJB4X4iXqrOU3lxXRpacKLmnLUNhDhaBKgjST2AMr0hb33Z+Fw80PHfdrvbPpnzrjQ8O5zbEDj7LRBardTsuT3+pdXCS7qHcLK3IFOKe6wHiqXXx4rliTtQHg5iDqbmAXKHpDYosklcQrwftbLiQ6IUpfG/nPomXAxn7wZgrWoL0T3jfdYnGqDKbm8zVQ== rsa-key-20210213"

View File

@ -0,0 +1,15 @@
---
- name: Setting up core
user:
name: core
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/core
- authorized_key:
user: core
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDv22iVeJ1DlIfj670ARRT3iEGdH9gN1CKM2cjQp0hYxLJ4BwxsyiSSqTb0TxpRABkIW8tRFm/cEBnD/f2//fcJ2NOem+RV0c90TamuslODXmklRKJ7qGWJkrEXJ4dl8cRvoFBlvcippuIT+0N9XWb1xO0MSBUie59FN+osSwOLV/D21K9JzoS8yzKtbxxQI+9N7BZlEmknp4QMcFtZ+SzEN7Q+EnH7YBfq5dEaAq3nhQ/vnuirwupmJ1GS+0Fsg14oe1xjfJom8ZWuw/FEFzJGpZFkh8HETiHtS6DihBqn3PL6kTnvNX+W7RY08chIMNdjwu8BsOJGjcD7jsqWIV2J user@debian"

View File

@ -0,0 +1,15 @@
---
- name: Setting up cptpcrd
user:
name: cptpcrd
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/cptpcrd
- authorized_key:
user: cptpcrd
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDQ7WapAoeCy8+MzukIKSbsk0qoSWzD2RhSwk6Y9Pw5uAz6Z5dp2P2srTD94pcgo9InZtuVBmGBpvV53QBbioFI5vwokQQY9I7ycjh6ylePNUh+BGcMUW3K7hFA/2PgSRZyhmAUtWs+IrZd3cS+mdXWcnaY2CMKUl9bUF2BiTXPkr6jQzT5QmnjSH0Oe16z2n9Z44irsIbRegph7nYGNnHCp/54TR6wca1W1z+fyeTbzuianqzsqrQU3A5SCaui0EO/1pSedegpD/iYL8DTOE20D6SKpyCnVEnoOfSu+m3nqtfwMHW/Lkd7KxeLVy/AR3awG9+zbnCCDjcRuwlU/IDdgJKli1qiOIlonSjxB8WprKOQcvHkJnjYDDtbV15W2qqv07h8KgGlCMnSWvjQjHO2LrIvu4e7BAGDZt9FLkN2kjo9539rhFwpMKfZZjjwbAaq3JJsXm8Kan+YV0EspW3Df1A1OnkwskgKNrBh4CJO3mFNXmlVreuBSTCO5YBuyEoOLLnQ/as/78dEY/vrneQUDj2206TB9qnUbosV7JhIGYolZ6Wen3OJY9BbQo5GZx1drxfqba8iypoi9cnu+96W82nnUN4lKx0ukmjgKMMWc0ROQalpfUlBD/wdZ83nAoZV7HDCoNT73wh3SjH09ijDUuZfRiglxg177ybGXpxBSQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up crispr
user:
name: crispr
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/crispr
- authorized_key:
user: crispr
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDOH4qqhVV5fctnQb1JDp0f5umEaQTCxoMIYpCO5CmSU/UfTjDMgKwjW9JXq7Ly2QBy8Rl5DYQa8eOvQIyQYamv/5S2jhXN/G8ZU88e+BJagcxQc0Fk7cQDuquLWqAipvKFjQIELVe6hvMdcoTOESZqAByLDu8Y6xEdH0qP+lQPAy5HuEfqcTlfaW3VCIVMLYPwPTQs5aOMDJh+8udYQF4NTIxYALyBXk9WpULmEaWFOuO/JHeZ3Mz2TZ1thY0h+4+L3iJj63c5hYD7y2HI+frvAXPX+5DR7UQlguK9z33DYDZd7skfh4GEvGmYivK0cE0xaCwPNyT6AwXaIQdsuIngC45pUKSxReCyHaScsx2fNr5r7FfHi/O0nyljyVWpEVAxyZIlgqfyh04g5dfYEUr8/1w3hgU7peWUr+ohnK7qp8ak6Kh9XK98hnqQunhowoXFP52NOqpwmet05M/dnumdrGIBQZtZ7J7pFyVzBsKxsmaLHL1cRzQklBiM7oy5tF/2JPpJWSc81q7gTR7V2W19XAHhLcdTIfSdIKJEpRIQNwbozeDloTPnIW20VX1wMT6s9ruGOaxIM43Ya9tb/TV9OAqVWkWZudw4bsApckmQJyMFw5cgpUJqZPWMZeqrRnkZv3A4gCIc4z5HkYMbdT8PeV9kGvmKIPEoVDSwYpPQKQ== phobos@phobos"

View File

@ -0,0 +1,15 @@
---
- name: Setting up cyber
user:
name: cyber
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/cyber
- authorized_key:
user: cyber
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDTQXYY8KmDsGKH3riDYLQHVHGMR0BjJdLTK3OMNR47Qq1EMz37jnAYUGmyrn0ANcMNYSMGVRtRjk/1tHqYVC/DkwECMKThuTaFSG9MjlviLCmVyYrm72OhqSksOshY/r0iMPgUNF9Nbt6qM+DXmPiFwdxEgvrFLOuFksaY9ULxk1NB+Pul3xHeUzeRrs6KG31/Gm30FSxP5wWeqfOSUX5F+yGrStYfYkVlllNYOHiJa7aGYWZFabNjU/Qpx8f2f/wuzpgQUPj8r4va15g68vFr/vRsBGf5aYUT3aXgJQLD4bFUWGAPUwOtnJPBesgapvkI3POk9H+D09RKd/KUiknUzvjS7NZglM/CYhXK6uFuCj0MUXOLG7GaDw161d4MofEqwIDQ5gSoMsNQaR9ih6P5PLXSd5IHApefpjXwzwXosOR48cq9JMimjUtcl8lVQMClems22oaQTZW5fhNnWI+qdbmqH9DjErKJwc9a+p1/SxIV49bVVaz6rbYXPhfjekaFyD+7IREbsN3flwoB0GynFHszBRFe9kXWldeAttxqdSAmQChHq78zuolo4bo9+NQpoiGqvmh5Qf7ZqGDxCyVNQFjK8TgHx/KHXt92nt1PsziVauotTfwXNIbQDewDpvRvw62dsDu2SNI0hcUbojSVhzY6mHEwJ6xnda/ICMX0pQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up cypher
user:
name: cypher
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/cypher
- authorized_key:
user: cypher
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBhFUv76/7NH0GGubQPMfedltUE0RJplmVGiUW10/EEipQ5/sqS5RopkIAMBg30vtpmVyET5mL1vkNWMnXJErA9xuzJ/zttuFv8lqJ7ATVkN+CkFgRn6lr96pTy/RWwuc1nfHdTyIs20lKyAnCjjNJAmLl+1ufMmRezShHFMBmFkxadJ8LaHJPwxx/Gxde/kgUUV5eHB8qaUYwaNae81+3q7gILKPNEyLrr4WOv5yvHhjefNDLq0l+K8cE9Hatgi6pWFBlSe7vfW9RAIjVNd+RSEh0rVI7QMTc1zH8hsl8ViFOOULaxjChDgsCwsxu0WVlCDmkqhQW56ZgIxpUx26t"

View File

@ -0,0 +1,15 @@
---
- name: Setting up d34d
user:
name: d34d
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/d34d
- authorized_key:
user: d34d
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSb2g60rWeylDIJ3CGKlC2ECQCQDxEx6Zu1Eh9dv0irl2mHt1PWGGn5hXq915UebpLYgnM6U4grmX69xZWsg5gwrjtEZV3GND2s5kAX7//NKv91zRrCe5XlR8KUpOt6ZjQx5BRLRCBVVvyBMxI+De2butUv3fn/QOl/BgalxGgJr2IK8TSwSb8+AF2FPwAap69iKCvnJ58FyRpuXpRF2ONJejI0C/cHSfuzSNlMch33H2cBDRPnAS+9un/kGmMhT2ZcVUZ4+hkRyn3LLknPPnUe0xI5RSS2D5gXl0bOOY4XvCkJJjsanU1DejPOIimC6Xc/61vBl7xfSOrifNgfnOIdjoGzEPq3d2JmQ7trijcDU6JmhHxuSPate/8wnvNjZmz9BB4h9MkDITygkWBQGokmk/lXoIN6UPdsd/JoLqvm3f0WWj2eO4Q04ZF/NeAlMJdZ0/nZSRpFkgnelo8OUMyEV38g1ULvhM0jtfbrLggxi1Tu9E6B6UcFBQ1tgrYnA0="

View File

@ -1,15 +0,0 @@
---
- name: Setting up dalist
user:
name: dalist
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/dalist
- authorized_key:
user: dalist
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDJV8lNQTsNyg05rNN65QTnNtqMgBw0CSX0bO+5x7nGw4THWGU0nQkfiQtg1ra5HF+RIQyTOdlITBOhbQkkR5RQ/DVzKdiXnYRHU6dGn1/kRCeAHGnqh4ge+scuUSTOM6dLf6SgeMP9RywoT7BFZj/r0wfgq/IChKmnxG8wcmqHQzHtMLTkcYFSqQG4yDdQaEc37V/r7QhPAEdxLfRaOIWSgJ/QEzMEguSYpRkc0SguWitXuRGiI+SMo9BAeDWycYyqgJlDbTvB1RIMchYP2r5c8+5TtEm/saDmg8gRVDeVtTA0LCPTCWcjDHACOWBam298Eook+bMkyyAO+sBxoWkp"

View File

@ -0,0 +1,15 @@
---
- name: Setting up danisanti
user:
name: danisanti
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/danisanti
- authorized_key:
user: danisanti
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDHUYj+muWpBt3GlcPbu2+gXobIwZd9iUKp7ffp+ZCJfPYl0xRxiuDPzEXqQUe/+wvDvPOx4DILOCfLBp+DZ0MyTVHAY1cgC5ZQwOEvtFZoGhJxH4pOjKJhIG++sXQM1Z5jrHC3PNUxwcNGTYkY8f6/7TSfEtFHO6R/fGYq4EUwDOV5z+5rl+EE3BmJAAdKDYDQjf2cRaYAegV+Z1ILdXk7DL00B8pN6BDIgN692OquV/E4qG+N/tLQEJYsIvIJHTBFsfd/AUoYsG59FPm9fCi39gmFcHkBducAOM0R75oQjJESJIHYqY0e4OeWuFhpwYYJcrKAlOdKS7Qs5L5F097nQE/K020sBVr9cf4GFa46yfd6IgefMDSXDuqkv3cgS6Sm44HrLcYRg+KES1BWIkMwqr+DClHZUxj2y2YRu9zWZk68NueACFGZq/1jCHMLKF3csCEs6nAJU65Sek1/0qyGhwmON0G03NDi/S3XGDOy09ogXC8liU/wjb1ffXxYUASHQOGK1KJ9Fht6xZIQus0cOt1uRbkiubG+NYtgagdBu6DsmPM3nOWjGCtZ29FYgPTV0ILwzH5r5PT02qBkTpD/RIaCikratgX1vkU2K81HEEjJp+S+0skcWJgHmleNZuuUo340Um7lCO8cmEJYSlX2NUINHVoXIWAnbrP2xvp0xQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up deli
user:
name: deli
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/deli
- authorized_key:
user: deli
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDp5tEytm5LlnCnabmuwvvvOditOI56SiWFQtEGlGLjiLqc4e6SrZ4ouSrjsokSWMTD5+W7aXyh0SHGpYwBIrrjhx+ValbYgAfpopT41MHBmVCxUaWJNkvBbdKQYq+D+rW9Ez0/CxW2vFYjf6h1BJ73JdXbuHksqPqaso7Fs3hD3ZdDT3QFYn9ScwxLqUaEjpRWIrtukn8iG5q0atKIzRJRAPtqYyutXRbXaNGFa5t2/dxTddva+5eO6c/Jvie2Agzv7Fg6yOPkTt8/H+ybdjqqYRwaoMeHRIEhJOewMVjwyl+c9ce954UhXwm3HmY6g4hZmf0zRUVIaxV07f7iSW/l"

View File

@ -0,0 +1,15 @@
---
- name: Setting up deltav
user:
name: deltav
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/deltav
- authorized_key:
user: deltav
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOYMN1x/+IQFDzae0fU+C+MmOMWTxr+oLxnhnrRwkW29 arch"

View File

@ -0,0 +1,15 @@
---
- name: Setting up denzuko
user:
name: denzuko
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/denzuko
- authorized_key:
user: denzuko
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDPKZO24MuW5NTloL7ILBf83Mjjv8pefEqZsWfkXQFR0e3Zot4VPvCnVv4+2++UBROnONpLoZp7F6Q2L/+5Ygs27qttyCVqgc6HwGzIlP65D7gR8Oxi96yZUtIZZpnQ4Q6gA0k3+dMnUzknKHy+z68GSo971WuxtnhrkcGvstcX3wbEYvrBdU0/qD/Yu7EKxfh/HF1zMA6F9ex6B3CA81aFoUlmx1uPHJ0vRGqz5n2VDP9eaK08is41zye13CRLSyH4JWVr50ny2SX4CM76raTxzWaFjcgGaWCQtiWVWYgtuaMbRnVLqXQ66588He6Y+7V7fvvRNqI41eJumYm8TT3B"

View File

@ -0,0 +1,15 @@
---
- name: Setting up derberger
user:
name: derberger
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/derberger
- authorized_key:
user: derberger
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhEbwbNpBsI4WAP+WN7b3eBuHjq0ixjLyAt5kqoA08e8gRD8GfeJxt5lmTZpCUakz8XVZeUrJAqojfNX3FTZJpyW7A9SnnSgMPugyAiOsNXKUHMsF4WsmKidG4PII9Stn6fu0P487kYivblWm1SNhAvX6WpNlXYp+yx8Iggp+1PXZx6k6J9CrIrxoRVpFQNBtvBawTk1xaToo1pPUM0YZjY8SUTYzzurfmpphWg217GxQ+RdlyVJ3QIaqtsUvmyIL+OybQBAjBPSmkp/3C/U2FOVrLO8ZHKK838bAre9ge5SoqJynu4SFvFWU3jpJWo127kIeI7wi1l0m3olaYhd7f venom@otaku"

View File

@ -1,15 +0,0 @@
---
- name: Setting up dingb4t
user:
name: dingb4t
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/dingb4t
- authorized_key:
user: dingb4t
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEApqUKQuXz+RrPqtdX0fYT8JcC3ioxLh8F9Tio2/XD+3kIG27jdR8X/SAhKSCqHVfhzLZDFEW2F2cGc3K3UV9hPfQmGzkbq354yUFZnIqmcrFFMvSxl9og6NfZohYk34JCEQ4WLxVmF1p0NSFSsNmTOw8gDxqehMF61mRRM247xiJTIvwB8ACPzzBbPg6U86YGzh5zEMrC4R+LK09ag+l26a9h+y/gzllfLeZc2E3ZU6P9+tc/qr7iWYJAFUvvi9G0Qm+k6kuJ5rzXIwh3pqfISudyMjB4r5w5u1f8U99iUc54OTPv0UdT+ojPFWzTmu3iGj1vF8zITHgvwoHaO26GZQ=="

View File

@ -2,7 +2,7 @@
- name: Setting up dovahkin
user:
name: dovahkin
groups: tilde
groups: tilde,cherry
state: present
skeleton: /etc/skel
shell: /bin/bash

View File

@ -0,0 +1,15 @@
---
- name: Setting up duitser
user:
name: duitser
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/duitser
- authorized_key:
user: duitser
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDN7sBTySiCJctslHkW3S10GF8V44YEyveOLJqk20QupBq0mvt6j1Vn6Xy0HH2jv5TCVtZhGXEW2yQhLWyDYSkcoK3+RpkR3dlPnTBw3fSb73H/86BjBElNSpSRRnITTTTGOy/GHBUIy7u+Njtlg5ksjMfGtmAmCKX7QSLUOiUZBdbktUclUeuHdZNNlujUfJgnzuPACeUmPZzTC0CU6I/GgzKgihNVhltO+2bgJ/fXNTKQ8YO9tl3bZW5J78zYbC08Hifn5KtZL5GaFcfbPJlN0m4+zZFhW9Yr8t0B/R3X7HbptrC0MFspSXNwhw7CJ4HLJq4UeaPtdZZpfJlMDdMhp17M8t9k4Dq5xMeGBV4llZhFO4NM7G/eRjbYVOo9gJikzRJNqnhdITFStCi/wEUCWgmaVQEdQZ3tQccAHaIcs3yaEGXABV0J0JpNvVnjpwv7Lo7eE4yRteymLGdcVLgEvfMmSD0c7vbtwGv7u3M5zuuQxWeo9uVOLB3OXcP6x00= arm90@arm64"

View File

@ -0,0 +1,15 @@
---
- name: Setting up earne
user:
name: earne
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/earne
- authorized_key:
user: earne
state: present
key: " ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCo73NRIy4Rnkjg7A13aGP4nXLrxycs28qk0sKlVv6OqlcttN9ZS7P53Bt2B6Vkn7InNfNb728cxiPHj4dJkYLD3nP/fzMLQtfoCqmYvTqeBKBlaQVgj29LJePFoJYCbtH+TeSRfDmWx808ZrpJFSi2tznqrEAK65UrGlPDG218XDIyHpqvQYFd+Iiup8IEGhFncEnDJrbgsfVr+p1dcbeym2KrkDAUA3FpA38+trcXof7o/RgwJTz+ZEjRdVbdrjwz91iHhxlDr1ePNm1WnzYGhVO3qtwFryAidcAUXv7GHrzcunHa7v4Htesxirf+DnGeIpmWfAKlOGMzeYA8yLhJJ1qu7VWyqUQ9TObyFPzeSnQCia001qKWyutXeICiuGmoxtkC3trCSrsvE1BveVKUa8E9RaDe++YXTQh0khxJaLg3EaRjWgo89O6FAK6NYmJF8/F2P7srEXWFxzVx1wAhYpxaxyAkYIYwGVlXOp4+J00qkVYvqOGYrCvz4O5XJABMQbVJHwGUy7HM9pJnYyJQs+z3MJAOXQ5SGji78vlcLvG3rxNuCWzjYZjbMtcWxnYRnWx+n4M5EqqClq5YCIdRbqO9lygw+1LjuPuxA1gGhxP9CkSlPhsFeRoUjuYR6T4A1DlMjPGQWnHAR42u8Hrj+A6ot0B2DmenCVBeyZtx/Q== earne@Tycho"

View File

@ -0,0 +1,15 @@
---
- name: Setting up exprobitasfiducia
user:
name: exprobitasfiducia
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/exprobitasfiducia
- authorized_key:
user: exprobitasfiducia
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCpyyF1lq42bQHWiOPlofJiDjND3CuCOgMGjdSAqvXtd4Iwbw3hJ0/EpxFC4Co/il6JcCNfIV3W+N+JpJ3000VXhFsBvoywhP2qr9ydu8OrhNlD6GDtvpQ1gBZ3YfFDuPRPWOfi1BW5kXki15YFKLTVzCkfGOJalUg8YpCqU2PTs+Tj7YMCNeM3/zbZQJbPhQVqpvtbI2+AMxQ3AomY2kiI8cI8Dvf/3gNMT05OgHd3MRs7FAmSJAJ3dj6bv1O8nNSYGEUDnxGXEUkIHrFyQKJ2e3luhId/WiXuIo5pdz3ooG4DF0kAh8/EH62Yi1wvGfm86DyVEeSS4br/zkMTD4J4m9pf242i7DGEuf3Q3VVLgdbYW8j5ar5lKIMxow/dNJKFgE2dTqpteXw+v3OjrdJWyLaKmS7EMHIfNTOGbDeKNjJC6MHYU+jnzX0JY2oGn/ENUsttpqBnYMnIqBi+NSkMXYvwsjB1exiSo0CiREExkrZ8mJC9JP9Avy9h+6Su5cdM04Vv5QKjMipsyImMphVGj67//m/nI15rPE+hUmvHCCOzV/y+MJ9wf9R5XhfzI8yThUshM7Xwdd4m6vt4pIJ1jaqKIWhI5nf87xZhGJntMdmDRD32w0uiBgzz3rg5wE+2bV10DIu/uGM4NV9TDMTjMRcfZ3QOxkU3x9w3WK+AHw=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up faabb
user:
name: faabb
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/faabb
- authorized_key:
user: faabb
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBf2nLLUC99OmVFgU3veTZORYs1oa4FJ2Mmhoa3FoM9ij/rGzGBjEpEwB75o5v2T1N9hHy56VS5yZ1ITpIIx4wNN1VUfYTho1yIaiIZTi3+K7yTte7npj5uB/Fs411H3uXGnh9b1e0g0flfxTEZAjJJQy/ZDh1lCIqcseMf2m4Qyim2A8O7/J39CcpSQtMWbxHRc1P4aHM3GfCACCjVvGjSjcKutsP8QJGy0AR8/sXAqvaetIfeCBCBTUCZc3kMuQTG3nYzvpzE3bE6jhqrWGELVp8aznJdiU//Lvo5fURRCwEhNfDyLG6ZOtgK30heWi17tBQKqhCZ0ljA0y9hvAd too"

View File

@ -0,0 +1,15 @@
---
- name: Setting up famubu
user:
name: famubu
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/famubu
- authorized_key:
user: famubu
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHLZ9gq40oOQKoV3CbQwLaTWQfV+PyMgCHf+VoUOJRPSxj24jeO1i/1FUE9UtuOGaqAXFgrqyEARtpFDZt6nwzopVKUd47kGtaaz/A8Y2L/C4AHZVmSfC6FXV6GIVeEQ80xXdC1AmDBHfW3EgjBkKi84Ks188Wnun+3q70iUj9+8pO8nI7hXW/Kf6vaSCFnitLargyXGm5H3033uNJRE7D84BLrKkm8X6vc5RGO9NnjoKLjERiNPva0Ozx28V0izNw42ER97VwrH1QZiLx9Ia5FCBHFacPmdbkShRCQf0fPZ1KJ+k0rILs654vTI+Bm9/Kh4Aib1zJ1lRxSxA1yYOv famubu@famubu-HP-Notebook"

View File

@ -0,0 +1,15 @@
---
- name: Setting up farooqkz
user:
name: farooqkz
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/farooqkz
- authorized_key:
user: farooqkz
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCrxWLI+XVuTJY8yHsWS9MbE8qyukbm4Xr/uRd6NJ44vCuFeQhCBBFGKOM4gTJyGndtuJSxoC9w4hjkjmIhViiqfyihHrigjae5qvRLjxc5h0PZWz3f3nwvcg0Q/VtQURTT3EFKmaJhB8SrhYh28IoEnLuEbFPxw9Yv9fajc2zJohWp6C8kstlnuWXtNlk+1mQz2vSQpDrMwt/lAcg+hLv3wx8db64mTadjj9M6EnmU6NkQd0bCIyFLMgVRYJ8gE1wnN7OnKx4v9E1mB4Hf5sPBTY6HXLPaVbX+d1y5ggEFzl/dQ+m6d+28eOakFDLAzu5LDQwkigoui5Rn103hdJB5 OpenShift-Key"

View File

@ -0,0 +1,15 @@
---
- name: Setting up fauly
user:
name: fauly
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/fauly
- authorized_key:
user: fauly
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCrLc31Bp3nvwVxq5g+8IndcNhH2jiVpJteLabQkKiju/nSVdV0GURaD7NKBBKfyJHl5gwRf503ph/5gQmkqxKEW3H+o8A7S97xXk8Ux8pbwdqvWQQ5gcV/Glr2TyEYn/8vm5Ufva4Hq6nqUFbGgWS6kh6aG2hwtjp2FORbDUTSG2bRbWjnNvpxrRB3MEFKxmo5jL2zAAyO5XBds40QC+Um64srkg8x9ApRBL/S3kgU1KomcV3eIe1XFeIDqHAClLgjWXuCZEJTp9l0xJpgC0D9s8pR+Q/zsuQ+bosb3xB8+yv+2Lz3Kf2xzPjX6OBwd38eXHne+UT69PeCYlD2YqU+xhNH/1qXbu7csZmsK/37haJvIkn352N207/Hb870LSKHvKRwmCMpscE5FSN/SvVXbpfZKXtCSP/ESNfDxg822tt6c8u78ywSfoGMHk0jJ3+R+jiTohU7vRN6UA1BSDX+HipA6DxkctNz16qq/5YjRkEhH5rcHqOHPut1OrlRCgd0G3S3vcI6j/WixQ0DM67ooN2u9epkc970U9O2qiXsioxHq1K0KmiYFEbY019jEOr3dBJ3jo1ozZwfJ6w/ufPJENw6F1G/ba3fWj1WEDcfv5LCTUKw2vlOXTs/0kFzP6ZHa+JBt/mcxwkDnIJcSGjOWK0EL9sA5nrVly2XEpELqQ=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up fengf
user:
name: fengf
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/fengf
- authorized_key:
user: fengf
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDlizOMqrOYdnEcIkDQletmnOS4Lc9kKIOTGs+SEhdcBq1XPiNHDR6io96Rw6fs4UluFJZ5km7+Sfk+AlnAXbNTz/Qi4fV0XTEjtBPhSw6Qh2/W3spuDZtecq09eI9Um1okCjsvlJ4iMDEtUilA5MA2XerDrun3CccQlZz3DZc3GULp2L2uW/DSWa7b/cy/7O0AKaLG6ymtWFOevGyMyZHBd/FeDdm0D9FzXp3BnkC6plaKb7P9HtiePNxsB+UlWlxn/fPoSPrRGr9Xjchyic2kmxyJ4itgt9wyOQMvhT2+e12bS9GWUDsBKEUruz9IjzAF6IrN6e1A/dtvaWvie9wSrvW3Om98YMXJrL6lgoYp5It8LanxakHyCgPU6x6iVQzZp9bQd4mB15YkTjCgbS8tKO90+sozsLXHn3+l4wLNiDncWY184Yu3odMRJgcUlDGsL/DjkuutaMMhCpgS4z54BTbOu6bWBweUo9Pzo3EWYQ+obuUE4g3iBXG5fgf24Z0= fengf@MacBook-Pro.local"

View File

@ -0,0 +1,15 @@
---
- name: Setting up fltk
user:
name: fltk
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/fltk
- authorized_key:
user: fltk
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDLVd8ynhgsRxynyapLrZqN2C38AC+rG+UeicDEFKjlToCHN3RM+iV4vVjos93x65kPzJBc96TeTu4gjcK2l3DdlKjlw2eJt5KIZvK82cGn9x7VcWeqrmL20vXki1BbiB4twBUOfu8+BKeCYGQE24R/hbcD/X2stoVv1ySnmhhfWQGODupRrPNAQ4yOkqdpv/DN1bg5mNZ2PmOyLozsfsKlX2HMte9lNURlLXAspOEKtu/GkazD7nKGZa+clSJnS9eA8SD74XM9V3nogBJIzzbE4lzYcqdOEOxJbNk+pepLFUeQtMJdZipUMTnmKPxEHKeFBX9nkvBNW6hCT4RgatDkkSYDEDA1eCO3WrD9CWymI6yQLJ7BW+utvdWQhN6kB1HoOf7M9uSsxiX2ZAzaLmvioHrKfwEiE+elo4iXcEYNEyD0WdMh02cdsRGTr2n9uBHDBRtVRwtnaUZX2ef4SpRjT3m40tMlaRkqsoeK9J8+xCkXP7mbp13HHqIsjWmzpZs="

View File

@ -12,9 +12,4 @@
- authorized_key:
user: freuddy
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCpCzTDJIJfMkoaaq1OKp7EBAdNZd3AK1evsveBQLqqrHu3vAteA4KNgvd33/UBAdTcUcSXXpEB3sFb1Gl27Z6Aer0eOqaTWC2rgcvGdNRCcOKgmvYGaaYGYX/hHqPfCxfOF+GlZ8Ri+FJKD/O/R32TlRIrAPhVXO746uiTs1Nt+QeJS2ZP6X+RyoEkPTes8xZ+ou7UUiePvuRc/jPnodLepKs9x3mqJ5fm4SGJe8KyGXEqVBcD35B8ozGPgBbQrroOzn8eWxQ7RJLQ0f1RDIQM5Vipe/vkDPvCkN8f6ie2EvL3YL/PfaIiWIXynmb36I8edOAca7tvv+2bbOksnkUrmFBLuF/Wt6abZr1ilUs+VG0E1X5sw0/ggKnOjAYVicmkKT6uiXBcKZOkQrZKvaveYOrwvDG6bWPyw87Mf6ZOfTnEBQtDPBOpyF7hObEkB8ldd1BrL9zSis5ettMbjkDz9hdQNa453wcbt1pxyHGOy6rpfeEXBkkvJFF6HfbFcVs="
- authorized_key:
user: freuddy
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEArG8Ri516Woa+UnkuWqU5mGnzJw2ssit4sqndrQjTGHVeb4zk1ZHfk/IerlUWelvutdgVPqGqsG+iiE/jti+ZGwl88lGhpLcyz2Dq7iSNr2G+78ziTR8VT+VuxuScezz8vsmsxxydCMpHZTy/hfmn0e9Q0lzgun4qIuuGHYzwRlT8g/EZ0VjI6MA6ZKGTC2zB/WxFcvtpGObNJzcPcgm0ercNIVM0W2w+9vAqhAD9tOgg8FTBjlzSjN4mo8P9ZIMUJllMKjT9iECTxtKnzVOtN4CNB6t01m9MxTgUuAbjlMpwIz1BPnknD1KmnaJ1MR5uuzuRfDmgkW5+DvvJWXkDhw=="
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDf1Gvy4MNh/Rh0wyvy5GxCBdhu8Y3GStZDGqN4jkIwwVRjrO/08bQr3ep+HCTl6rBn27qXDj3i3V6PWy9wRPXPv93wJv0qjleZbaLabHghoWZv/hWanpRJ0pUeM8FJB2RhjlcYSABSxMW9p8Z985rsqq3i/WpANwXOD2YFchkXn2Qz4j3cCgfCId+cmXiwtvo/t5BkoRP3IHyQ2FEMgbQLtU+enj6SqlV6/hFb8wrW+foLEtp04fCqTC/yUaM4Q28kJqs3AecFlzjELqqG0c/GQyH6UVaTMO3CSWZdK3Z7ABWta8v0Kj/xkVq6VhpXQvTxJNvpLGgT8rdWDF4pSEtrrmp3LIJjPmHUw2Jf4QLGfiE+COLrM/OIofp25e803NGfZovaZsvCT/fat1MAaPXBFa4k6Wl1uAnwcH1s6F/Q1BYIauKlu0wOQREby6wAo/DmefmcQLZBZ7jd1sCDBd7u+0sXf/6fSGP3wBL2Qmvp13qyA+6Gtvm6JyPQy81uES8="

View File

@ -0,0 +1,15 @@
---
- name: Setting up fro
user:
name: fro
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/fro
- authorized_key:
user: fro
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEwl260QBrZBYxvfRfSi0PvvKt6lMzT0204W1ChCbqiu"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gagrilli
user:
name: gagrilli
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gagrilli
- authorized_key:
user: gagrilli
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCl8otoMNtiTMa+qTonxBpmo4b+jXifl8ToCwYRQpWGq69fbmY5NH17OtJzhi+x+TJEXqcTJCcbraTTpaqTe2XG16lxt4lLaddAsCfQ+twN2oej7xcu2kI/x3hvUXW8A+7YXqOOt/IVKrdtOgDQDKatQHtHujzIrxNsLA7N5fVm9FwBdlj+4twL/Jz0R5CHGnWopGSR34Z/owghUusznodOReV7irQCCuy7I+m+VNTECFuXxLvhzma2cOalAImbAkv+siW0NkWmVgIve594dPY96sytogUrPa+6FH090kOHY7glWa+wb9fhgjhTPTqqGsAtpdMKzmpCDLXx/3NElsjR"

View File

@ -0,0 +1,15 @@
---
- name: Setting up genie_g
user:
name: genie_g
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/genie_g
- authorized_key:
user: genie_g
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvnyNWGOIJ2sF9BSIaPV5eicIv7BwQoSnp8CFKBwu+ePkmrfg0nzVRlzzYjETMxDZFBL/4PbnjliYtvQknvtXYAusKXreAjJ4F/79ElAkyIcpQDf1Qeeaq7Hk9PgtTJ4y9pDMAePY3R83FQ2g7uSR93lNCPq4CRM5eDa7VlDII58kMmPYuYeVP1JlgGjNytcBG7yEFjW7t9PJ2802prcWz8Py7mKqwIsSIRDoDtBbC2WBI0Jrd+FKG9x6wWH/XOVXOIjKxRDkf2nfkLpEPGvD5BhPLv92SZrU8gQnBZ0LGZDMjrxYe5QyFvUpP9F9Tnq7T37vyC8y9LkY0nSPJBI9b thunix"

View File

@ -0,0 +1,15 @@
---
- name: Setting up genvara
user:
name: genvara
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/genvara
- authorized_key:
user: genvara
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDCAmzAkSYUsTvi4FfEIBkaXmEZsbadoJu6VKgto+DMbpPI2ARfjHpUFN498k3IXRjDjPHalz2j/W+EBnD8NXkdgYTjhFD72DIyRsrHMIoA6YUP8pMScInQYW0AZjm6r+pO0jXBJShzdZB9jxGlN1lEcd5YWyegt3ux8yujBnDGhnj/itb2E3eunAPIDaN5HZt6g3TSUzdJKjsFWp0XxchpZfLMuxbsvFhwp6mipgD3XirfUIBZbhx/4Z7QfnT9TVXfFaS7hV3XurMXt9jq0W5p4OWJp+ehwoffQKKI65lMJrkmxgNb51rQeZGAi9dB1fAmycboARCd1NGca+/uba30KpPAGLr4GN+QKNwNrF7BHOnOLlkYCHVAFrVpKOMJUyvYLPJ6HoF1C615vOrLErX3gxu7iH1JHb1uUbLJhSDEHml9biFnCe37/cAgFzhAk5Peh5aiKVxTSSguUOcFK/EaKxb5cIQbBAx+1iuAZkYvwVK6U3Btl8LQrwMomBSePyoatnZCbwWCcaltRUqjSClY6joyJi5wzDG4cbOfLjf9DNKblrvMnmqTFj3XnCESKZnJhgN8nf+zjKcJ7Ve/dIqkUUH89vb9MoLJs4tGFEZEcaaTOxovWPoGElpyZZuwucbg0IIHnaQK2CJ/IAM8vETrtEc/qWbjWA60fFF+E2XC7Q== issam@DESKTOP-BFP6NT6"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gfunkmonk
user:
name: gfunkmonk
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gfunkmonk
- authorized_key:
user: gfunkmonk
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDuF9ehi6aGGjBPwiXpQsjlp4U490Tc771PoJG1RLJWSTfVxEkXtdNbqglJk9fKCrS+8l1cidSEQdgIxhbnB8uSTdKWtzi/hBCVazdmX8AINmzZ79Fn5ENMZCBApvLLZIOugsYbDisiUa0jBNybbwtEasfzf4o/shdtC9zN3FEzxDBp5xcBqR9tPvfwCyqmjVwHARSK2NnVOrih3muHOuYTb35r5JbyvezJpiSCFn64ne9w1Mo5Vdv6DXxjafZfsamSjsg+vDwSfWiF3YvInKf1hAF2QbIfeWV5dRw7HLGA7eRmb+Yy6r9P9sGk37EKMVEDh7y8Ae4cqApGnMn3149L gfunkmonk@gfunkmonk-HP-Pavilion-17-Notebook-PC"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gjeu
user:
name: gjeu
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gjeu
- authorized_key:
user: gjeu
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDg3b+kJyCvk+YYWUpgMF0M4XfMni39+QOUwiHSCADIOkH0XuxnwfpHbO4V33vd2hFFXGQxXwQkFeh62BzicUJ/DiFTMh5EwO/uahV/Fy4dOxe0l5/GGcCn13oCiyI4mKohAOYhyIcyqaI7A4arQi4FkRtBkfQ1RaEdb4x8bDh5AdUyh5p21ZJ882nv9k9JpIjLTXaUu90gD3liPh4GZWrcYL7z3sdkBtIewQCeSwrCYWqVKhs6cgryODXA9zdpMQSBDZm7vVw7cwTU4/Z1/qCaF5waO42u6FmaTyJmw6nBIMADY6Y5phP49UEtDYMU9mx5d41aGV2wF3lM2xi0OowF"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gluon
user:
name: gluon
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gluon
- authorized_key:
user: gluon
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDci0Z1j/4wwdCF0CGMZzslmX6HfUncpk4bj3wDMb1fYNmrDw8cawPz31xO3RiRWkYZziAEWQC9723FA9pXdicFnOZ7jYX2qcwZlfFFhX30K752dPd2PzPXQ7iWMHgYCNtChzmsIH42qM/w7PVdNIpOBOkL+KmPUwKYFcB/yPWqvvPtSBSpNPWoPj+RyYIVZJZycIieI6GEkbqNSexyiaCgFmfIotaJ6t9z4HZVi9wSgnHL/ioXfQtWUq1d/uhOjHAUW75yTEeRZYq8hFSeZeEGWLXMeUxiTStVGkByy/R4SyvQfoU3ILCeIAj7eY7tE2JZyjdYGWuJbz3atbnARPXcmaNt1zhfrlFNs4e4eKydjPeYjEb0vi3WkqU/mrBQDkBQtixDGOOfmKjE50YnBYar233qazliIv/AM/FzqqvEVimRBKxg5FbuyL9TI/41CWZtmkD92xeWvp0IIh3x6tlGTjM+RisJBTD+lbQ6EtmKZL2RNatfrjh3UpwiNG4u0Qa3WfEqHWOwKW84QNrmkAkAgo64O3+Ssx2x3sHG64UFe0N8fyuKbbMIRoY0O0NOF0TsKiq8gDzassPe2TaCtbjN/k4RYpTreo+7DsY8BaqMhHoWXNsDfWvaocF//TY+w4GFR/q2kEb2Xv6HQj+yhoVx/iccHuqOw0tdZaW6mxIG2w=="

View File

@ -0,0 +1,15 @@
---
- name: Setting up goring
user:
name: goring
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/goring
- authorized_key:
user: goring
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII87AVmzTh3XW7KYNK+Uo1/hcKbH6FWDvJJOMEO9aXes"

View File

@ -0,0 +1,15 @@
---
- name: Setting up greek
user:
name: greek
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/greek
- authorized_key:
user: greek
state: present
key: "ecdsa-sha2-nistp256 AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy"

View File

@ -0,0 +1,15 @@
---
- name: Setting up grifit
user:
name: grifit
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/grifit
- authorized_key:
user: grifit
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAqUov/1nlKuLVZGHSXLT+4yYvIsxLI5LMTC9aBx04F0Y55DLjhF8aecJznDcrj5j6ru6uGH71cJOv3jivOwzihejPVhnSiwEKUHlux+4luALB6x/iUCCoSX13LglhY00VwsbehPmNPcU0FSwcy2PnoVQ8Xqrg9slERAKNaQo1TU2L5vXG/"

View File

@ -0,0 +1,15 @@
---
- name: Setting up grimm665
user:
name: grimm665
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/grimm665
- authorized_key:
user: grimm665
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDYBFl7/XP3Bvewn092q3/GRxkGBkeJB9GOgUZmp8uupeJJXKBCohi4v4aU8sP7F7BFs3obupTt1oKs4xO7r6wSWaS3p7r/qUoMDz9KSMKtrmq9Pe7ocTfxF5u7u2xbkOVStyeQQF6Gw78p95jCZ/5gsTdEtU1u/81M/XIuDI1zPEFAMy6lFKY5XOdqtf5HLHrKeqmS2MMeqs3wWLY7BM1532TWRdZOfCe2vL869A6tUnwkPimBqLw4dzqxW0DXuLvjISy2bAg/E5IzK9Lq5uHw0+OQT8V4LZsKp2/PhmetlSsARGIB7yqw58OjUQUb2EIJ1RAVoBbPC2FjNo9gRknT dana@dbucci-laptop"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gyges
user:
name: gyges
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gyges
- authorized_key:
user: gyges
state: present
key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJA5drkgaXEptOZ4NhBOQEbxBviK1q30ngHSVURhllai 220A37@pm.me"

View File

@ -0,0 +1,15 @@
---
- name: Setting up gzj
user:
name: gzj
groups: tilde
state: present
skeleton: /etc/skel
shell: /bin/bash
system: no
createhome: yes
home: /home/gzj
- authorized_key:
user: gzj
state: present
key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCeOuvzMl+hntNwi0vznRsfw0EM2OUR2cfiwKMTBSE8A3e2Mx1zmBtbWgtd1pWZLVqKlNIL1RzeWhQHzTa+5YluCRfZJcRBHNBnTLw0RoOmC0pzHQHEouSTjh+gOp33N7wLNrEx+Fs0apFetA02O0PzKeJUD2qFY9+HmLoZ4BopsD6ObYYPeMeln4D8C11UBTNAF7Wuf9UlXsNmXL776XGCXMSU93xFtEYpn/FQNK1AcCtQ3qzRGvU/uDNf8d2nZ+y110DFUxK5E1oUZmNmlfQ+anF6o+DJNzf9rEBkwj1JaoVJQXAR0c0pqronScEOordcW+0sHgVP0o9P4qgHsZvp gzj0x@RED"

Some files were not shown because too many files have changed in this diff Show More