From 5d81bc1b2d0d9d4aec3ce2d955108b317c5de828 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 1 Dec 2019 19:45:51 +0000 Subject: [PATCH 001/356] Adding user clu --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/clu.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/clu.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4bb23310..c577ee62 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -163,3 +163,4 @@ - include: users/stereo.yml - include: users/joro.yml - include: users/info.yml +- include: users/clu.yml diff --git a/roles/shell/tasks/users/clu.yml b/roles/shell/tasks/users/clu.yml new file mode 100644 index 00000000..07a8090a --- /dev/null +++ b/roles/shell/tasks/users/clu.yml @@ -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" From 3fa4c99e842a38ffd754ef918fd4a4c051e8a5f1 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 4 Dec 2019 19:37:34 +0000 Subject: [PATCH 002/356] added DNSBL to smtpd_recipient_restrictions in postfix --- roles/shell/files/etc/postfix/main.cf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 01f86e49..91c04de5 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -64,6 +64,7 @@ smtpd_recipient_restrictions = reject_rbl_client spam.dnsbl.anonmails.de, 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_rhsbl_sender dbl.spamhaus.org From 2eca3c36f27f39866db520893e361f61a534d311 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 5 Dec 2019 12:12:18 +0000 Subject: [PATCH 003/356] Adding tls for outbound and inbound email --- roles/shell/files/etc/postfix/main.cf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 91c04de5..335d1d39 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -16,6 +16,7 @@ smtpd_tls_key_file=/etc/letsencrypt/live/thunix.net-0001/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. From e85aa7ed05e25f2d032e3b9313a9cd9c09a3d262 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 6 Dec 2019 12:53:00 +0000 Subject: [PATCH 004/356] Adding user sebre --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sebre.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sebre.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c577ee62..0a805fdf 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -164,3 +164,4 @@ - include: users/joro.yml - include: users/info.yml - include: users/clu.yml +- include: users/sebre.yml diff --git a/roles/shell/tasks/users/sebre.yml b/roles/shell/tasks/users/sebre.yml new file mode 100644 index 00000000..733c468f --- /dev/null +++ b/roles/shell/tasks/users/sebre.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sebre + user: + name: sebre + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sebre +- authorized_key: + user: sebre + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEQuprLlS/gtj67G4qMJs29VnURehGYZ8U48jX1EMbIc" From f466f59b87cbf504a4441c23851c86b56b0cbcf4 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 12 Dec 2019 15:50:38 +0000 Subject: [PATCH 005/356] Adding user olya --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/olya.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/olya.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 0a805fdf..478346de 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -165,3 +165,4 @@ - include: users/info.yml - include: users/clu.yml - include: users/sebre.yml +- include: users/olya.yml diff --git a/roles/shell/tasks/users/olya.yml b/roles/shell/tasks/users/olya.yml new file mode 100644 index 00000000..d3120ae1 --- /dev/null +++ b/roles/shell/tasks/users/olya.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up olya + user: + name: olya + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/olya +- authorized_key: + user: olya + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDemEWrltLuEPVBa33U+ePI/EFGb0tK3zmTP0wXndCYkY9bI24YFrQrpkHCbBGeOgP2mD3QvKdgeWnPs24jib1XmjN/HDJ1QTZxYTBiC0SXkIb+LZh7l/MLn+KHRxjwyQk5dvp+sgyamBrvyI7c95ZFXEyEVyrI9sn8XtZ4ZnLYEdnS1yLsCLVuU/RLG9cSBvY2rXFy6heGou35f5Rm52mg6Ov7EaFxQQCv85ryGtgq2ECYm1pscpJms68u4dbtfa/7a62LnFS2cAvwKmBnk0WV5VVQXv7UhMJSLbGZ0s3pgiwKwm9dRJKNTwzkWB52fbEUrOVsnIL285aQ1sM51vY7" From 9aab7364f29c63cff1f4e4c0d6da33c08588611b Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 12 Dec 2019 15:55:01 +0000 Subject: [PATCH 006/356] Adding user kpeh --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/kpeh.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/kpeh.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 478346de..a8c21f03 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -166,3 +166,4 @@ - include: users/clu.yml - include: users/sebre.yml - include: users/olya.yml +- include: users/kpeh.yml diff --git a/roles/shell/tasks/users/kpeh.yml b/roles/shell/tasks/users/kpeh.yml new file mode 100644 index 00000000..9d28afe0 --- /dev/null +++ b/roles/shell/tasks/users/kpeh.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up kpeh + user: + name: kpeh + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/kpeh +- authorized_key: + user: kpeh + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCSdg55d/MNlvtH4OVO4L0Y26ZJl+Jio2mXv6Cv/17ZGMi+g1qEWWRbglEaXXWNrv2S2D1gbg2bZm2Iz5LmRz9P9aqqk1LqWZTlzDDgJPrlyNJI5a5Z1muijFlL8Cr7GvhJkDTgJyO21kaRuw5WctWMfdoZ//McdFuJ58mFdbM5wZP8FUKVA9UkJNLTH88yA7Hvn01hmjbpL7TnYsHBYIVmPQOpSQaVr1eRIItlVZd3H/MnGl1/qDaNyVJAF5TUgJTcgEBznHY48qAeNE9SpDXRjVBS+o4PxJBdiyQicMdYMzTJMzPJwTx9CkH8fV/+UvsQoW/2bkHhGrlwVyRcSu37" From 76ff1707b2322b7803df64b4034e2f37b23e93d2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 16 Dec 2019 13:44:52 +0000 Subject: [PATCH 007/356] Adding user infoTV --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/infoTV.yml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 roles/shell/tasks/users/infoTV.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index a8c21f03..5c7463b1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -163,6 +163,7 @@ - include: users/stereo.yml - include: users/joro.yml - include: users/info.yml +- include: users/infoTV.yml - include: users/clu.yml - include: users/sebre.yml - include: users/olya.yml diff --git a/roles/shell/tasks/users/infoTV.yml b/roles/shell/tasks/users/infoTV.yml new file mode 100644 index 00000000..23236b31 --- /dev/null +++ b/roles/shell/tasks/users/infoTV.yml @@ -0,0 +1,16 @@ +--- +- name: Setting up info + user: + name: infoTV + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/infoTV + +- authorized_key: + user: infoTV + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMK4H6kDNDqkda/JkeEVcQcU1sn/zAh8W6KnP/EyZ2hUqvqiCG8f441DCE9dJCq7ZB/xM4TLAFr/UVfdqoGdyiAf5LtBwGydz1AJqF7PRVvYnE8knO1p8HH5nx1jSYFHIXoS3grvVSbyUzJkYR1V22xjxjyhpOjjAXwHAhYQHVpbspVQHCE3gHNU1zvYwAP1pBqWGtTGKMATtMz6ECcl3d4jhCrkq2wVoTOWDSzBvfOOmxW3WnI/AD9q2W71tEeymVBkgJ/2jfrVa3mKP4/ng9jsva/Tes4gxwFduZMxcXt2Hpf+v3dC/rlqYPKGRkf1N+UmnlCpmGuMDpTWUJix9f thunixshell" From 38260b06b58fb7dab4a28948225dabb17c49a478 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 22 Dec 2019 09:47:02 +0000 Subject: [PATCH 008/356] added RBL to smtpd_recipient_restrictions --- roles/shell/files/etc/postfix/main.cf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 335d1d39..b400b4c6 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -61,13 +61,14 @@ 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 bl.fmb.la, reject_rbl_client spam.dnsbl.anonmails.de, 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 From fcfe21d1bf50eb78fb83e8719c1d266668913636 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 23 Dec 2019 12:21:09 +0000 Subject: [PATCH 009/356] Adding user saturnv --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/saturnv.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/saturnv.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5c7463b1..fe791758 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -168,3 +168,4 @@ - include: users/sebre.yml - include: users/olya.yml - include: users/kpeh.yml +- include: users/saturnv.yml diff --git a/roles/shell/tasks/users/saturnv.yml b/roles/shell/tasks/users/saturnv.yml new file mode 100644 index 00000000..a4917b63 --- /dev/null +++ b/roles/shell/tasks/users/saturnv.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up saturnv + user: + name: saturnv + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/saturnv +- authorized_key: + user: saturnv + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAyvvBuBVsPA1ny1CVkeKFehgUpebSlQyBeqhAj5oFLTnJObzWiPNLiKBIACFeOOjB7ELt1rACMz08GkiwLUjKfdfjfXnBn3COJA2kCySFZOp5+Y6NBW0d8L7AJxzjqFbPrUe+GiwNcUeiDAreEQvO4VFhABy0VenmWFNWcQZ2vEtpzHKqkU4jBKLw3c/mD2DVGjQm8rZ8qh0E5PC3V9F3Xqwa9OBRu9fS6DfwN0DArCXbsO8D77DoA1fcwEhTTPSZZE2OYNvj9Asmro0ey14+zrVz9P8hksbzu4ucSTuUuCblglyHbBJgKCxo01FTn+q0ZW/qCEq49cXu2qQ3EN/phQ==" From 57c73b72c10dd483dbb9a8a7ac3a0bb5b0aa8cec Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 23 Dec 2019 12:25:52 +0000 Subject: [PATCH 010/356] Adding user chispitos --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/chispitos.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/chispitos.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index fe791758..495b99a1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -169,3 +169,4 @@ - include: users/olya.yml - include: users/kpeh.yml - include: users/saturnv.yml +- include: users/chispitos.yml diff --git a/roles/shell/tasks/users/chispitos.yml b/roles/shell/tasks/users/chispitos.yml new file mode 100644 index 00000000..fbbff393 --- /dev/null +++ b/roles/shell/tasks/users/chispitos.yml @@ -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" From 8eb81599d36ac3da9e21e9c55ece3567f052662e Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 23 Dec 2019 12:31:00 +0000 Subject: [PATCH 011/356] Adding user bacterio --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/bacterio.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/bacterio.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 495b99a1..939cf9d3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -170,3 +170,4 @@ - include: users/kpeh.yml - include: users/saturnv.yml - include: users/chispitos.yml +- include: users/bacterio.yml diff --git a/roles/shell/tasks/users/bacterio.yml b/roles/shell/tasks/users/bacterio.yml new file mode 100644 index 00000000..c63f39c7 --- /dev/null +++ b/roles/shell/tasks/users/bacterio.yml @@ -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+0MrrDa8Me1kMHRURfeFfOgqizaXlsDYTW2iP0GjWRwd8LEZReuJiMtFpiWRJ0p2iM4oXVmL2DY9rGEDor2MPdDkQkfv3XtXQURKy9NNRo" From 284511370fe6e2b624aa1d3e84135e5ee4c7ef2e Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 23 Dec 2019 12:39:56 +0000 Subject: [PATCH 012/356] Fixed ssh key --- roles/shell/tasks/users/bacterio.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/bacterio.yml b/roles/shell/tasks/users/bacterio.yml index c63f39c7..9fed27e3 100644 --- a/roles/shell/tasks/users/bacterio.yml +++ b/roles/shell/tasks/users/bacterio.yml @@ -12,4 +12,4 @@ - authorized_key: user: bacterio state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC14jVKK8/cNaerfumybkwXORyp55E2AYdTYhj/2EVK6lgLpfK+0MrrDa8Me1kMHRURfeFfOgqizaXlsDYTW2iP0GjWRwd8LEZReuJiMtFpiWRJ0p2iM4oXVmL2DY9rGEDor2MPdDkQkfv3XtXQURKy9NNRo" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC14jVKK8/cNaerfumybkwXORyp55E2AYdTYhj/2EVK6lgLpfK+0MrrDa8Me1kMHRURfeFfOgqizaXlsDYTW2iP0GjWRwd8LEZReuJiMtFpiWRJ0p2iM4oXVmL2DY9rGEDor2MPdDkQkfv3XtXQURKy9NNRoW8HvUEQg2ZzJOR3p7JBLMxPYouQzglT49IyXYKHh+tJKKaUH8sJIgQT3w/t3RSNeGNL3hh4hyk0ofGGsC+gBLJcPs4DkrjtArl7ejsTYVZsEtExrTUZwTotBSEYNUD7VQp13onpf1I/RIzC7kszDuQvcBuysC3mikTz3upa78owY/vGHBe60LnMlxlKEPVPAcfrWbmiAtQBdA+7apI4gjm4w0ReMxXR+81ju0KBE+bPVaKi001bLyIU01Bf8q58+MGtCvOlUDR2SITM2dbu7v4Ow16NIgFBl0pz8JWLt1zQvd8PQQny1Y9sfG/6ghQw8xgO/ngiyLD7+3uu2zILiAJUwwAKfhmaIV/7RH0=" From 24ca5c0988cdc63d859a672361e08a7ca7817307 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 24 Dec 2019 15:17:53 +0000 Subject: [PATCH 013/356] Adding telehack wrapper --- roles/shell/tasks/packages.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index c6e58ecf..5db07a6c 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -296,3 +296,11 @@ 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 From 0be4959684aef2536084cc81853cce44db3c57ad Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 27 Dec 2019 15:14:48 +0000 Subject: [PATCH 014/356] Helps to add the actual wrapper to the repo --- roles/shell/files/usr/local/bin/telehack | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 roles/shell/files/usr/local/bin/telehack diff --git a/roles/shell/files/usr/local/bin/telehack b/roles/shell/files/usr/local/bin/telehack new file mode 100644 index 00000000..d57e0a83 --- /dev/null +++ b/roles/shell/files/usr/local/bin/telehack @@ -0,0 +1,3 @@ +#!/bin/sh + +/usr/bin/telehack From 37a2b050b435bd41d5153cf52c4ce5ecc0d8c146 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 27 Dec 2019 15:17:47 +0000 Subject: [PATCH 015/356] Ok, helps to test the wrapper, too --- roles/shell/files/usr/local/bin/telehack | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/telehack b/roles/shell/files/usr/local/bin/telehack index d57e0a83..78d0733e 100644 --- a/roles/shell/files/usr/local/bin/telehack +++ b/roles/shell/files/usr/local/bin/telehack @@ -1,3 +1,3 @@ #!/bin/sh -/usr/bin/telehack +/usr/bin/telnet telehack.com From 3fcb907f5ea0b4df8867d23b1a42b7c200ae7039 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 28 Dec 2019 21:09:00 +0000 Subject: [PATCH 016/356] Adding user jac98 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/jac98.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/jac98.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 939cf9d3..9c56b459 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -171,3 +171,4 @@ - include: users/saturnv.yml - include: users/chispitos.yml - include: users/bacterio.yml +- include: users/jac98.yml diff --git a/roles/shell/tasks/users/jac98.yml b/roles/shell/tasks/users/jac98.yml new file mode 100644 index 00000000..44ebbb1b --- /dev/null +++ b/roles/shell/tasks/users/jac98.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up jac98 + user: + name: jac98 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/jac98 +- authorized_key: + user: jac98 + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJdu3JpA02RFmd9YVhVIw53FolIR9Drq2TJzob8jVmcn6S5cXjTfZ+//OJk2wopLoRkEn2hF+nuYM7apPLgGuKbMDcdC9czIOymgaXbm3q9h7Nj2REIQeIHohO7UMN7pf" From e94787d56befb581ebe14b8a261cd7a4496efce2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 28 Dec 2019 21:19:37 +0000 Subject: [PATCH 017/356] Fixed jac98 key --- roles/shell/tasks/users/jac98.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/jac98.yml b/roles/shell/tasks/users/jac98.yml index 44ebbb1b..fd87564f 100644 --- a/roles/shell/tasks/users/jac98.yml +++ b/roles/shell/tasks/users/jac98.yml @@ -12,4 +12,4 @@ - authorized_key: user: jac98 state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJdu3JpA02RFmd9YVhVIw53FolIR9Drq2TJzob8jVmcn6S5cXjTfZ+//OJk2wopLoRkEn2hF+nuYM7apPLgGuKbMDcdC9czIOymgaXbm3q9h7Nj2REIQeIHohO7UMN7pf" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDJdu3JpA02RFmd9YVhVIw53FolIR9Drq2TJzob8jVmcn6S5cXjTfZ+//OJk2wopLoRkEn2hF+nuYM7apPLgGuKbMDcdC9czIOymgaXbm3q9h7Nj2REIQeIHohO7UMN7pfQMcP/fw/yFUT9f+QQ/7Puy2ESSNBzVTOmv2tyDAAPkQ==" From 03cef26ba57a718e3047ef58d1b4a80fc6f9e406 Mon Sep 17 00:00:00 2001 From: ubergeek Date: Tue, 31 Dec 2019 09:05:06 -0500 Subject: [PATCH 018/356] key reset --- roles/shell/tasks/users/stereo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/stereo.yml b/roles/shell/tasks/users/stereo.yml index b1eec479..d4a178c4 100644 --- a/roles/shell/tasks/users/stereo.yml +++ b/roles/shell/tasks/users/stereo.yml @@ -12,4 +12,4 @@ - authorized_key: user: stereo state: present - key: "ssh-rsa AAAAB32GcyRGmQUfSzmnYnjw6LBsish8DVWf3RHlM0KHIzuksCRkl3sNdxbko2/HD8+QU6hb9+Ir3LMYNgwypPMrvzMkY3uTV1DgvP8hoTTNVRllECCLPTkhs0tUAB1E6BduPZUGx03wUcSC0M8aEb2Ktj9IavKAvDsWUEusBsjYbSHRAT/nnxiH2bMJrW5XGaZM7FcKBAE41o33wldeouGoHHt2pZr/kRVuTHoKH9Bha5O5+1EV+yuuG7khRGLLzreJdnWyUCRt4lFdoH43gQAsmQZWfHWsN40tLdnFZ1JV4eNF7bssHhM6zhLZRKjNkcffx3KYhDQ0xERHCm5Dqj1/NraOsZ6lBn7Rrf/LVR2RUmNKGjhKyWFUCgCD/VUQ==" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAg6iSwvtUxZ566PY/WiROmXbosiaKrwmmYLgFTKTF9fU9QU7qzi4AIKPqgIn0tXskmgs0vdweCzLOZ3S+iQSpV55n2fLMd695p7+i/RSVHojCxYDtQ0eMzEC9/fDlFJ3+cVzQu2vnNvT5pxZ3t7CET0UhZclaOvmsU7rSUrS0jGo6Dh3RC2zaXT+/Agxi3+mtraCPSLvfrzfmgN2urTHQTeD8O9FwRbStRJx0xar5RlAH41k0nCvZMkucKmCpfzsQB9yVEdxl9tWULHYYkW5zVdVIvtq2DT3hg8cPquXR2nqWRVlrEHm9thxoT2RWQ3eHqk3l9j/jths6nqn9tv2dUw==" From 051600c0bb29fa180e2f9b7612ca5533b48f9808 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sat, 30 Nov 2019 11:24:44 +1100 Subject: [PATCH 019/356] install useful dev packages --- roles/shell/tasks/packages.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5db07a6c..a6d1d7df 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -69,6 +69,8 @@ - alpine - adwaita-icon-theme - analog + - autoconf2.13 + - bison - bsdgames - build-essential - byobu @@ -93,6 +95,7 @@ - finger - fingerd - fish + - flex - fortune - frotz - gitweb @@ -113,6 +116,8 @@ - lftp - libapache2-mod-php - libarchive-dev + - libc-dev + - libc++-dev - libconvert-binhex-perl - libffi-dev - libfreetype6 @@ -126,6 +131,9 @@ - libsdl1.2-dev - libsdl2-dev - libssl-dev + - libtool + - libtool-bin + - linux-headers-amd64 - lua5.3 - lynx - make @@ -227,10 +235,12 @@ - tcl8.6 - tcllib - tcltls + - texinfo - tdom - telnet - telegram-cli - todotxt-cli + - uuid - vim - vrms - w3m-img From ce6de7bbc5cf8c98eea029cdf291fad59c8760e7 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 1 Jan 2020 10:28:29 +1100 Subject: [PATCH 020/356] some packages need to be installed before first run --- roles/common/tasks/packages.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 89cf3493..629a4d76 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -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 From 3af4e1cf1ba7e8659d5adc8abb4bda3ec09af4b6 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Tue, 31 Dec 2019 18:35:40 -0500 Subject: [PATCH 021/356] Drone CI --- .drone.yml | 15 +++++++++++++++ .drone/deps | 4 ++++ 2 files changed, 19 insertions(+) create mode 100644 .drone.yml create mode 100755 .drone/deps diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 00000000..67d94160 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,15 @@ +kind: pipeline +name: default + +steps: + - name: syntax + image: debian:10 + commands: + - .drone/deps + - ansible-playbook -i hosts site.yml --syntax + - name: run + image: debian:10 + commands: + - .drone/deps + - sed -i "s/thunix.net/127.0.0.1/g" hosts + - ansible-playbook -i hosts site.yml diff --git a/.drone/deps b/.drone/deps new file mode 100755 index 00000000..fbe88721 --- /dev/null +++ b/.drone/deps @@ -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 From 4a96bc040907b511f22b5aac7cb8c047fb0c4c0f Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 1 Jan 2020 10:38:44 +1100 Subject: [PATCH 022/356] add note about CI --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 693e4307..0ec8275d 100644 --- a/README.md +++ b/README.md @@ -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: From 1aed2e1af0e7715398fa9660b14d2a01009b45ab Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 1 Jan 2020 10:48:24 +1100 Subject: [PATCH 023/356] bye bye python 2 --- hosts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/hosts b/hosts index ccc58136..96b4e718 100644 --- a/hosts +++ b/hosts @@ -1,8 +1,12 @@ +[all:vars] +ansible_connection=local +ansible_python_interpreter=/usr/bin/python3 + [common] -thunix.net ansible_connection=local +thunix.net [shell] -thunix.net ansible_connection=local +thunix.net [webserver] -thunix.net ansible_connection=local +thunix.net From 66edfdc02b06504fc92dd7cc8f690fe0b3a0aa78 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 1 Jan 2020 11:31:12 +1100 Subject: [PATCH 024/356] install pip3 --- roles/common/tasks/packages.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 629a4d76..9bcab670 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -31,6 +31,7 @@ - dpkg-sig - git - ieee-data + - libboost-dev - letsencrypt - man - members @@ -43,15 +44,15 @@ - python-netaddr - python-paramiko - python-pip + - python-pymysql - python-selinux - python-xmltodict - python-yaml + - python3-pip + - python3-pymysql - sqlite - sudo - ufw - - libboost-dev - - python-pymysql - - python3-pymysql # Install ansible python package, because it's the latest - name: Install ansible From 3bf7e46d6977f0307e132e521e7a1b4d5824e8af Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 2 Jan 2020 01:01:48 +0000 Subject: [PATCH 025/356] Just needed a single change, to push --- hosts | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts b/hosts index 96b4e718..1d830889 100644 --- a/hosts +++ b/hosts @@ -10,3 +10,4 @@ thunix.net [webserver] thunix.net + From 5064bcc8219f62ae747fb078d2d4875eb1d925ae Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 2 Jan 2020 15:17:31 +1100 Subject: [PATCH 026/356] resolv.conf does not work on drone --- .drone.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.drone.yml b/.drone.yml index 67d94160..4c324886 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,4 +12,5 @@ steps: commands: - .drone/deps - sed -i "s/thunix.net/127.0.0.1/g" hosts + - sed -i "s/- include: resolv.yml/#&/" roles/common/tasks/main.yml - ansible-playbook -i hosts site.yml From 322fb48fceacd4c40cbfc9dbc9fffd458af82cef Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 2 Jan 2020 15:19:36 +1100 Subject: [PATCH 027/356] syntax --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 4c324886..dffd4570 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,5 +12,5 @@ steps: commands: - .drone/deps - sed -i "s/thunix.net/127.0.0.1/g" hosts - - sed -i "s/- include: resolv.yml/#&/" roles/common/tasks/main.yml + - sed -i 's/- include: resolv.yml/#&/' roles/common/tasks/main.yml - ansible-playbook -i hosts site.yml From 35983a2c751a13580dd9a01cce5d694f03f1b0ea Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 2 Jan 2020 15:21:48 +1100 Subject: [PATCH 028/356] move drone seds to seperate file --- .drone.yml | 3 +-- .drone/seds | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100755 .drone/seds diff --git a/.drone.yml b/.drone.yml index dffd4570..0bf5ce0f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,6 +11,5 @@ steps: image: debian:10 commands: - .drone/deps - - sed -i "s/thunix.net/127.0.0.1/g" hosts - - sed -i 's/- include: resolv.yml/#&/' roles/common/tasks/main.yml + - .drone/seds - ansible-playbook -i hosts site.yml diff --git a/.drone/seds b/.drone/seds new file mode 100755 index 00000000..77dcf0c1 --- /dev/null +++ b/.drone/seds @@ -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 From 4c7ff439be78d249a2daa7c6938d246eefdc36e5 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 2 Jan 2020 16:40:05 +1100 Subject: [PATCH 029/356] add systemd to common --- roles/common/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 9bcab670..5efd8d9b 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -52,6 +52,7 @@ - python3-pymysql - sqlite - sudo + - systemd - ufw # Install ansible python package, because it's the latest From f8d2b8679a3e1f5db355d8fd5ee40891ba2e442b Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 2 Jan 2020 17:06:23 +1100 Subject: [PATCH 030/356] Remove run for now It uses up a lot of resources and requires a lot of different things unavaliable in Drone CI. --- .drone.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0bf5ce0f..9724590d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,9 +7,3 @@ steps: commands: - .drone/deps - ansible-playbook -i hosts site.yml --syntax - - name: run - image: debian:10 - commands: - - .drone/deps - - .drone/seds - - ansible-playbook -i hosts site.yml From f9800791139facf491d3eb6dc623d48bef7e486c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 4 Jan 2020 01:55:26 +0000 Subject: [PATCH 031/356] Mighty WCMS website hosted in Thunix --- .../apache2/sites-available/mightywcms.thunix.conf | 12 ++++++++++++ roles/webserver/tasks/apache.yml | 5 +++++ 2 files changed, 17 insertions(+) create mode 100644 roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf diff --git a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf new file mode 100644 index 00000000..edf4e8e8 --- /dev/null +++ b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf @@ -0,0 +1,12 @@ + + ServerAdmin naglfar@thunix.net + ServerName mightywcms.thunix.net + ServerAlias mightywcms.thunix.cf + DocumentRoot /home/naglfar/tildegit/MightyWCMS/ + ErrorLog ${APACHE_LOG_DIR}/error_mightywcms.log + CustomLog ${APACHE_LOG_DIR}/access_mightywcms.log combined + + Order deny,allow + Deny from all + + diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index 45c40b1f..a4912c96 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -87,3 +87,8 @@ copy: src: ../files/etc/apache2/sites-available/wiki.thunix.net.conf dest: /etc/apache2/sites-available/wiki.thunix.net.conf + +- name: Deploy apache site conf for mightywcms.thunix.net + copy: + src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf + dest: /etc/apache2/sites-available/mightywcms.thunix.conf From 51463ac061ff128bc48d68189029085370fd1abf Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 4 Jan 2020 23:24:49 +0100 Subject: [PATCH 032/356] Create the symbolic link for MightyWcms --- roles/webserver/tasks/apache.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index a4912c96..b9ddfd1b 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -92,3 +92,9 @@ copy: src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf dest: /etc/apache2/sites-available/mightywcms.thunix.conf + +- name: Create the symbolic link for mightywcms.thunix.net + file: + src: /etc/apache2/sites-available/mightywcms.thunix.conf + dest: /etc/apache2/sites-enabled/mightywcms.thunix.conf + state: link From f73ef89a88cd1731a0b7ca7a740bbfd4f141d0fc Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 5 Jan 2020 02:19:39 +0100 Subject: [PATCH 033/356] Use authorizedlocation by authz_core directive --- .../files/etc/apache2/sites-available/mightywcms.thunix.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf index edf4e8e8..d8409418 100644 --- a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf +++ b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf @@ -2,7 +2,7 @@ ServerAdmin naglfar@thunix.net ServerName mightywcms.thunix.net ServerAlias mightywcms.thunix.cf - DocumentRoot /home/naglfar/tildegit/MightyWCMS/ + DocumentRoot /var/www/MightyWCMS/ ErrorLog ${APACHE_LOG_DIR}/error_mightywcms.log CustomLog ${APACHE_LOG_DIR}/access_mightywcms.log combined From ebf4eec0478652f612ad383a6215a72a23f81798 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 5 Jan 2020 04:04:24 +0000 Subject: [PATCH 034/356] Adding backup script to ansible, and exempting nobackup --- roles/shell/files/usr/local/bin/backup | 8 ++++++++ roles/shell/tasks/packages.yml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100755 roles/shell/files/usr/local/bin/backup diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup new file mode 100755 index 00000000..4a79c3c2 --- /dev/null +++ b/roles/shell/files/usr/local/bin/backup @@ -0,0 +1,8 @@ +#!/bin/bash + +tar -cvz --exclude "nobackup" --exclude='/home/chuck/*' --exclude='/home/slip/*' --exclude='/home/angelok/*' --exclude='/home/usernameak/*' --exclude='/home/ubergeek/*' --exclude='/home/amcclure/*' --exclude='/home/fosslinux/*' --exclude='/home/zszoke/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ + +chown root:sudo /var/backups/$(date +%Y%m%d).tgz +chmod 640 /var/backups/*.tgz + +find /var/backups -name "*.tgz" -mtime +3 -exec rm {} \; diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index a6d1d7df..5762c298 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -314,3 +314,11 @@ 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 From 095210ea51c0b0ca602a20481385db91f7fce9c2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 5 Jan 2020 19:11:01 +0000 Subject: [PATCH 035/356] Fixed int to string warning --- roles/shell/tasks/ufw.yml | 44 +++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/roles/shell/tasks/ufw.yml b/roles/shell/tasks/ufw.yml index 84bbbd84..ab17bd11 100644 --- a/roles/shell/tasks/ufw.yml +++ b/roles/shell/tasks/ufw.yml @@ -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' From d0bc6877eaa6a85eb96b7dd355bdc3a0003dd3a5 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 5 Jan 2020 19:16:26 +0000 Subject: [PATCH 036/356] Adding user turboblack --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/turboblack.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/turboblack.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9c56b459..f53ce4e2 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -172,3 +172,4 @@ - include: users/chispitos.yml - include: users/bacterio.yml - include: users/jac98.yml +- include: users/turboblack.yml diff --git a/roles/shell/tasks/users/turboblack.yml b/roles/shell/tasks/users/turboblack.yml new file mode 100644 index 00000000..2d756148 --- /dev/null +++ b/roles/shell/tasks/users/turboblack.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up turboblack + user: + name: turboblack + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/turboblack +- authorized_key: + user: turboblack + state: present + key: " ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQD4lvSX45GdpDmPyhFp1Ix7OCmALKXxV5kmBF40vo7WpzEl5W1pB8ZAM/R4ICES4k3KuQzFFACDFp9tmbQhHZOlu0RXtkG7SmFv8i9Id2thBCe2Pnn1Ont8djxc68kh55q tim+7NvjHiJ+0uhJSK1LS8g2bgGpUskQsjZCnDkeiV6hImWZp5xBVyXWOK2jO0+qr5sD9j85xTUFVzYKwzjIKFhKPJCvYdlGdKNDR+FbR4PVkUyc1qMkP7iB+0MjknmTW1EhkWLNRUzgC3vrCVTsvRb+RYDo8pE W+oDVWfO0EDy7aATRCu1Vv4lg4Vpxrs6y4kt+1WmxTbGT1zAuSetGZPrYjnYQSUainDU90hQOJ5egyMXYoxztk4LYeN6fvQ+hO75RWfdDoDhK7na3E5lOKlKF77spCMpbBF8suMPpDi44xWuG7Om3oV8eL+Opr9 zm2BAF5T0XivTzc2csY5ZOXiLJEjN4ZWqdq0Z2nXugsHtacnWe7i5rvHCBy/vLDrZk=" From 4e8714a5df8a9bd1b3080d071eeffc85354ee5a0 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 8 Jan 2020 00:30:24 +0000 Subject: [PATCH 037/356] Tweak backup to exempt nobackup, and added user/group cherry --- roles/shell/files/usr/local/bin/backup | 2 +- roles/shell/tasks/users.yml | 6 +----- roles/shell/tasks/users/cherry.yml | 16 ++++++++++++++++ 3 files changed, 18 insertions(+), 6 deletions(-) create mode 100644 roles/shell/tasks/users/cherry.yml diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 4a79c3c2..7858f0d6 100755 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,6 @@ #!/bin/bash -tar -cvz --exclude "nobackup" --exclude='/home/chuck/*' --exclude='/home/slip/*' --exclude='/home/angelok/*' --exclude='/home/usernameak/*' --exclude='/home/ubergeek/*' --exclude='/home/amcclure/*' --exclude='/home/fosslinux/*' --exclude='/home/zszoke/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ +tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f53ce4e2..4446aae5 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -8,15 +8,11 @@ name: sudo state: present -#- group: -# name: fortitude -# state: present - #Service accounts - include: users/minecraft.yml - include: users/bzflag.yml - include: users/znc.yml - +- include: users/cherry.yml #Normal Users - include: users/amcclure.yml - include: users/ben.yml diff --git a/roles/shell/tasks/users/cherry.yml b/roles/shell/tasks/users/cherry.yml new file mode 100644 index 00000000..1efdfe41 --- /dev/null +++ b/roles/shell/tasks/users/cherry.yml @@ -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 From 91f9960be00b50989dbbb80d7cd1cad8866e1242 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 10 Jan 2020 09:25:40 -0500 Subject: [PATCH 038/356] Tweaking backup job again --- roles/shell/files/usr/local/bin/backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 7858f0d6..c8ed2bda 100755 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,6 @@ #!/bin/bash -tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ +tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz From c54adda95f7cae8e45d1e61ee1040456ef063efe Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Jan 2020 22:26:47 +0100 Subject: [PATCH 039/356] Enable AllowOverride and RewriteEngine for MightyWCMS --- .../apache2/sites-available/mightywcms.thunix.conf | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf index d8409418..7578ba23 100644 --- a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf +++ b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf @@ -2,11 +2,14 @@ ServerAdmin naglfar@thunix.net ServerName mightywcms.thunix.net ServerAlias mightywcms.thunix.cf - DocumentRoot /var/www/MightyWCMS/ + DocumentRoot /var/www/MightyWCMS ErrorLog ${APACHE_LOG_DIR}/error_mightywcms.log CustomLog ${APACHE_LOG_DIR}/access_mightywcms.log combined - - Order deny,allow - Deny from all - + + Options Indexes FollowSymLinks + AllowOverride All + Order allow,deny + allow from all + + RewriteEngine on From 5fa6b457f27dcdc465f7593160335bfc2f7f9690 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 12 Jan 2020 01:14:23 +0100 Subject: [PATCH 040/356] ...maybe it needs force: yes --- roles/webserver/tasks/apache.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index b9ddfd1b..50076bd2 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -92,6 +92,7 @@ copy: src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf dest: /etc/apache2/sites-available/mightywcms.thunix.conf + force: yes - name: Create the symbolic link for mightywcms.thunix.net file: From 664dfe3dbc9c4481869c2a2d8dd256ab3b58ac9d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 12 Jan 2020 02:13:18 +0100 Subject: [PATCH 041/356] if that was the issue, it would have solved it --- roles/webserver/tasks/apache.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index 50076bd2..b9ddfd1b 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -92,7 +92,6 @@ copy: src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf dest: /etc/apache2/sites-available/mightywcms.thunix.conf - force: yes - name: Create the symbolic link for mightywcms.thunix.net file: From 23627d8385957f3bf0f3e195f31579e076808250 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 13 Jan 2020 08:09:23 -0500 Subject: [PATCH 042/356] Adding log analysis tool --- roles/common/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 5efd8d9b..6065d45f 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -35,6 +35,7 @@ - letsencrypt - man - members + - pflogsumm - python - python-certbot-apache - python-httplib2 From d9e603b1af83cb92f5331af5a86bcea4d9b109d2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 13 Jan 2020 08:38:01 -0500 Subject: [PATCH 043/356] Moving files to correct spot --- roles/shell/files/etc/cron.daily/postfix_stats | 2 ++ roles/shell/tasks/postfix.yml | 8 ++++++++ 2 files changed, 10 insertions(+) create mode 100644 roles/shell/files/etc/cron.daily/postfix_stats diff --git a/roles/shell/files/etc/cron.daily/postfix_stats b/roles/shell/files/etc/cron.daily/postfix_stats new file mode 100644 index 00000000..99ba6681 --- /dev/null +++ b/roles/shell/files/etc/cron.daily/postfix_stats @@ -0,0 +1,2 @@ +#!/bin/bash +/usr/sbin/pflogsumm /var/log/mail.log.1 | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net diff --git a/roles/shell/tasks/postfix.yml b/roles/shell/tasks/postfix.yml index ba909f91..8c53141d 100644 --- a/roles/shell/tasks/postfix.yml +++ b/roles/shell/tasks/postfix.yml @@ -28,3 +28,11 @@ group: root mode: 0644 +# Deploy cron for reports +- name: Deploy cron reportss + copy: + src: ../files/etc/crond.daily/postfix_stats + dest: /etc/cron.daily/postfix_stats + owner: root + group: root + mode: 0755 From a63dc5870271c24afaaea6e2634755579f209fe6 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 13 Jan 2020 08:42:15 -0500 Subject: [PATCH 044/356] ok, one more time --- roles/shell/tasks/postfix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/tasks/postfix.yml b/roles/shell/tasks/postfix.yml index 8c53141d..26f8d057 100644 --- a/roles/shell/tasks/postfix.yml +++ b/roles/shell/tasks/postfix.yml @@ -29,9 +29,9 @@ mode: 0644 # Deploy cron for reports -- name: Deploy cron reportss +- name: Deploy cron reports copy: - src: ../files/etc/crond.daily/postfix_stats + src: ../files/etc/cron.daily/postfix_stats dest: /etc/cron.daily/postfix_stats owner: root group: root From f027c49be9c872499e668ee6406c5d126e834da1 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 13 Jan 2020 08:46:22 -0500 Subject: [PATCH 045/356] Adding user d34d --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/d34d.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/d34d.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4446aae5..dd7be3c0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -169,3 +169,4 @@ - include: users/bacterio.yml - include: users/jac98.yml - include: users/turboblack.yml +- include: users/d34d.yml diff --git a/roles/shell/tasks/users/d34d.yml b/roles/shell/tasks/users/d34d.yml new file mode 100644 index 00000000..31c73962 --- /dev/null +++ b/roles/shell/tasks/users/d34d.yml @@ -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=" From 2e6a8a92b64b7255358970e940295cf042884bbc Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 07:57:44 -0500 Subject: [PATCH 046/356] Ok making backups more better --- roles/shell/files/usr/local/bin/backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index c8ed2bda..3c06234f 100755 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,6 @@ #!/bin/bash -tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ +tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz From f69919d4110608fa992490326b81d935013d7d6f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 09:35:31 -0500 Subject: [PATCH 047/356] Adding dovakhin to group 'cherry' --- roles/shell/tasks/users/dovahkin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/dovahkin.yml b/roles/shell/tasks/users/dovahkin.yml index fec5aa68..341b5a27 100644 --- a/roles/shell/tasks/users/dovahkin.yml +++ b/roles/shell/tasks/users/dovahkin.yml @@ -2,7 +2,7 @@ - name: Setting up dovahkin user: name: dovahkin - groups: tilde + groups: tilde,cherry state: present skeleton: /etc/skel shell: /bin/bash From 5015be7071e7ae8e0a52ad6315b0f40fc116e74b Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 09:38:32 -0500 Subject: [PATCH 048/356] Adding additional directories, per issue #13 --- roles/shell/files/usr/local/bin/backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 3c06234f..ebef9333 100755 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,6 @@ #!/bin/bash -tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ +tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ /var/games/minetest-server/.minetest/ /var/lib/minecraft/paperclip/ /var/lib/bzflag/ chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz From 38d7e2440780f0a954887a5adb1a887b7e853414 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 10:22:27 -0500 Subject: [PATCH 049/356] Unenforcing users over 180 days --- roles/shell/tasks/users.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index dd7be3c0..dd7076b9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -74,7 +74,7 @@ #- include: users/letamesis.yml - include: users/chuck.yml #- include: users/janda.yml -- include: users/os.yml +#- include: users/os.yml #- include: users/akoeabi.yml #- include: users/mks.yml #- include: users/makmur.yml @@ -90,7 +90,7 @@ - include: users/cyphyx.yml #- include: users/krystianbajno.yml - include: users/vigilant.yml -- include: users/isaac.yml +#- include: users/isaac.yml - include: users/moskrin.yml - include: users/southerntofu.yml - include: users/dariusz.yml @@ -104,26 +104,26 @@ - include: users/yximdoa.yml - include: users/dovahkin.yml #- include: users/philip.yml -- include: users/sancho.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/lytedev.yml +#- include: users/skirk.yml - include: users/serafeim.yml #- include: users/dot.yml #- include: users/virus.yml -- include: users/mandelbroth.yml +#- include: users/mandelbroth.yml - include: users/victoralt.yml -- include: users/arch3r.yml +#- include: users/arch3r.yml - include: users/linel.yml - include: users/haivets.yml -- include: users/tux.yml +#- include: users/tux.yml - include: users/georges.yml - include: users/techemporium.yml -- include: users/un4ckn0wl3z.yml -- include: users/aewens.yml +#- include: users/un4ckn0wl3z.yml +#- include: users/aewens.yml - include: users/dex.yml - include: users/vernon.yml #- include: users/xallmm.yml From 7996546f500e9f97917c2d90f71186900e09bba0 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 10:26:41 -0500 Subject: [PATCH 050/356] Adding user noce --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/noce.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/noce.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index dd7076b9..48637db8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -170,3 +170,4 @@ - include: users/jac98.yml - include: users/turboblack.yml - include: users/d34d.yml +- include: users/noce.yml diff --git a/roles/shell/tasks/users/noce.yml b/roles/shell/tasks/users/noce.yml new file mode 100644 index 00000000..95eb9ab9 --- /dev/null +++ b/roles/shell/tasks/users/noce.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up noce + user: + name: noce + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/noce +- authorized_key: + user: noce + state: present + key: "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNZvlGEa+15tU1UEkDfcUq20LZLrimYUbHDMHooGAnvoOfT9+0QcAN59KxKA3mz3o0ZzP4gVwtOivEC6etyAfZk=" From 8a503e87d49fdbcfd2e4a5e34cb872ff6c74eb29 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 10:43:41 -0500 Subject: [PATCH 051/356] Adding user cuber --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cuber.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cuber.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 48637db8..5c4c9a4f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -171,3 +171,4 @@ - include: users/turboblack.yml - include: users/d34d.yml - include: users/noce.yml +- include: users/cuber.yml diff --git a/roles/shell/tasks/users/cuber.yml b/roles/shell/tasks/users/cuber.yml new file mode 100644 index 00000000..a723cda9 --- /dev/null +++ b/roles/shell/tasks/users/cuber.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up cuber + user: + name: cuber + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/cuber +- authorized_key: + user: cuber + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDaYoGbEuN1ib5Xt1Lif3ZmXFwAi3DXH5zolsm5A9jEJCrXRpcnVHm4U7t3GrbLvLyLuzLhbYzgBDCoJU5GiRvIxg0ewfVLNhPz6BYYbY2QwLSMUA/K08KHuAcgRho3yaawGZdd30EYenejqgf9TSdkzSbkRBH5p6qSwm5TlUBw36S1IRgPkidsRNWBWfwCWpm+2aR/OSvNYtMT35T45htt/SVdMpi6hQgJg0pmcnPfhVS6cdBdTXQTFdb8qCTPk+2DZTX2OqU1ktQ2s7xkPoYFmfH1HiaLUq0MbP0uEFM6zjX3sC7gS+Kvp0mxgClNEGGaqdfnJs5b3lXNkhOSuOIAgmvaqMJX7+MCTphyd7jzT8GCcLxugcRYhB5JTiY6BxPuYcmKqZfm97ANlrnEauvyCsd9TSfGu6tOKWoN7anbM2oaLWE4cFtiBSoSCZIlPbi/7oQDfAGFsuYJQLeIt9xp9QoT8wLk3RGxhN+IgItzGqygeKiIALKXAo31GM7COI8=" From b385306dc61736e08b3e7efd733d399e7408d2be Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 10:43:53 -0500 Subject: [PATCH 052/356] Adding user cyber --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cyber.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cyber.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5c4c9a4f..008f4ac8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -172,3 +172,4 @@ - include: users/d34d.yml - include: users/noce.yml - include: users/cuber.yml +- include: users/cyber.yml diff --git a/roles/shell/tasks/users/cyber.yml b/roles/shell/tasks/users/cyber.yml new file mode 100644 index 00000000..cd0164f6 --- /dev/null +++ b/roles/shell/tasks/users/cyber.yml @@ -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 AAAAB3NzaC1yc2EAAAADAQABAAABgQDaYoGbEuN1ib5Xt1Lif3ZmXFwAi3DXH5zolsm5A9jEJCrXRpcnVHm4U7t3GrbLvLyLuzLhbYzgBDCoJU5GiRvIxg0ewfVLNhPz6BYYbY2QwLSMUA/K08KHuAcgRho3yaawGZdd30EYenejqgf9TSdkzSbkRBH5p6qSwm5TlUBw36S1IRgPkidsRNWBWfwCWpm+2aR/OSvNYtMT35T45htt/SVdMpi6hQgJg0pmcnPfhVS6cdBdTXQTFdb8qCTPk+2DZTX2OqU1ktQ2s7xkPoYFmfH1HiaLUq0MbP0uEFM6zjX3sC7gS+Kvp0mxgClNEGGaqdfnJs5b3lXNkhOSuOIAgmvaqMJX7+MCTphyd7jzT8GCcLxugcRYhB5JTiY6BxPuYcmKqZfm97ANlrnEauvyCsd9TSfGu6tOKWoN7anbM2oaLWE4cFtiBSoSCZIlPbi/7oQDfAGFsuYJQLeIt9xp9QoT8wLk3RGxhN+IgItzGqygeKiIALKXAo31GM7COI8=" From 691efe26050b1a811819638ae36ba61159098861 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jan 2020 10:48:10 -0500 Subject: [PATCH 053/356] Removing errant user --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/cuber.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/cuber.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 008f4ac8..7b13f5e6 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -171,5 +171,4 @@ - include: users/turboblack.yml - include: users/d34d.yml - include: users/noce.yml -- include: users/cuber.yml - include: users/cyber.yml diff --git a/roles/shell/tasks/users/cuber.yml b/roles/shell/tasks/users/cuber.yml deleted file mode 100644 index a723cda9..00000000 --- a/roles/shell/tasks/users/cuber.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up cuber - user: - name: cuber - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/cuber -- authorized_key: - user: cuber - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDaYoGbEuN1ib5Xt1Lif3ZmXFwAi3DXH5zolsm5A9jEJCrXRpcnVHm4U7t3GrbLvLyLuzLhbYzgBDCoJU5GiRvIxg0ewfVLNhPz6BYYbY2QwLSMUA/K08KHuAcgRho3yaawGZdd30EYenejqgf9TSdkzSbkRBH5p6qSwm5TlUBw36S1IRgPkidsRNWBWfwCWpm+2aR/OSvNYtMT35T45htt/SVdMpi6hQgJg0pmcnPfhVS6cdBdTXQTFdb8qCTPk+2DZTX2OqU1ktQ2s7xkPoYFmfH1HiaLUq0MbP0uEFM6zjX3sC7gS+Kvp0mxgClNEGGaqdfnJs5b3lXNkhOSuOIAgmvaqMJX7+MCTphyd7jzT8GCcLxugcRYhB5JTiY6BxPuYcmKqZfm97ANlrnEauvyCsd9TSfGu6tOKWoN7anbM2oaLWE4cFtiBSoSCZIlPbi/7oQDfAGFsuYJQLeIt9xp9QoT8wLk3RGxhN+IgItzGqygeKiIALKXAo31GM7COI8=" From 1199bc3c4c5a1e4622fa1cfaaac6b14f885a64c0 Mon Sep 17 00:00:00 2001 From: ubergeek Date: Tue, 14 Jan 2020 12:38:49 -0500 Subject: [PATCH 054/356] add new key --- roles/shell/tasks/users/cyber.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/cyber.yml b/roles/shell/tasks/users/cyber.yml index cd0164f6..36065fae 100644 --- a/roles/shell/tasks/users/cyber.yml +++ b/roles/shell/tasks/users/cyber.yml @@ -12,4 +12,4 @@ - authorized_key: user: cyber state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDaYoGbEuN1ib5Xt1Lif3ZmXFwAi3DXH5zolsm5A9jEJCrXRpcnVHm4U7t3GrbLvLyLuzLhbYzgBDCoJU5GiRvIxg0ewfVLNhPz6BYYbY2QwLSMUA/K08KHuAcgRho3yaawGZdd30EYenejqgf9TSdkzSbkRBH5p6qSwm5TlUBw36S1IRgPkidsRNWBWfwCWpm+2aR/OSvNYtMT35T45htt/SVdMpi6hQgJg0pmcnPfhVS6cdBdTXQTFdb8qCTPk+2DZTX2OqU1ktQ2s7xkPoYFmfH1HiaLUq0MbP0uEFM6zjX3sC7gS+Kvp0mxgClNEGGaqdfnJs5b3lXNkhOSuOIAgmvaqMJX7+MCTphyd7jzT8GCcLxugcRYhB5JTiY6BxPuYcmKqZfm97ANlrnEauvyCsd9TSfGu6tOKWoN7anbM2oaLWE4cFtiBSoSCZIlPbi/7oQDfAGFsuYJQLeIt9xp9QoT8wLk3RGxhN+IgItzGqygeKiIALKXAo31GM7COI8=" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDTQXYY8KmDsGKH3riDYLQHVHGMR0BjJdLTK3OMNR47Qq1EMz37jnAYUGmyrn0ANcMNYSMGVRtRjk/1tHqYVC/DkwECMKThuTaFSG9MjlviLCmVyYrm72OhqSksOshY/r0iMPgUNF9Nbt6qM+DXmPiFwdxEgvrFLOuFksaY9ULxk1NB+Pul3xHeUzeRrs6KG31/Gm30FSxP5wWeqfOSUX5F+yGrStYfYkVlllNYOHiJa7aGYWZFabNjU/Qpx8f2f/wuzpgQUPj8r4va15g68vFr/vRsBGf5aYUT3aXgJQLD4bFUWGAPUwOtnJPBesgapvkI3POk9H+D09RKd/KUiknUzvjS7NZglM/CYhXK6uFuCj0MUXOLG7GaDw161d4MofEqwIDQ5gSoMsNQaR9ih6P5PLXSd5IHApefpjXwzwXosOR48cq9JMimjUtcl8lVQMClems22oaQTZW5fhNnWI+qdbmqH9DjErKJwc9a+p1/SxIV49bVVaz6rbYXPhfjekaFyD+7IREbsN3flwoB0GynFHszBRFe9kXWldeAttxqdSAmQChHq78zuolo4bo9+NQpoiGqvmh5Qf7ZqGDxCyVNQFjK8TgHx/KHXt92nt1PsziVauotTfwXNIbQDewDpvRvw62dsDu2SNI0hcUbojSVhzY6mHEwJ6xnda/ICMX0pQ==" \ No newline at end of file From 67fb5719d4486a3fe542b6d25e762fa3b006515a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 15 Jan 2020 15:12:46 +0100 Subject: [PATCH 055/356] Adding user hamlet --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/hamlet.yml | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 roles/shell/tasks/users/hamlet.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7b13f5e6..0a7de1ba 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -172,3 +172,4 @@ - include: users/d34d.yml - include: users/noce.yml - include: users/cyber.yml +- include: users/hamlet.yml diff --git a/roles/shell/tasks/users/hamlet.yml b/roles/shell/tasks/users/hamlet.yml new file mode 100644 index 00000000..6a39590f --- /dev/null +++ b/roles/shell/tasks/users/hamlet.yml @@ -0,0 +1,16 @@ +--- +- name: Setting up hamlet + user: + name: hamlet + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/hamlet +- authorized_key: + user: hamlet + state: present + key: "DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=thunix.net; s=mail; +Pubkey: ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAticGtgRJWaFhI1y/0kT670vzntjM/GDe0QINGgkfl+3ZdoYMWl3RIMonp8TQVlcW+n2fY60HgaLxVkTFPbXm1CY2+pLBtWtvPK4cat8AkG+LYTn4zAyjmVaPUmpXd1NvTMigBZMRQ5TIhjEbpG90wM1YkvPgmE0tc3co0QMr7EByFgtXbk75mh1U0rbgLdQNRdmH+fkkARoKXyTNOamgsPgFjOZeG+fIZ+s9WuUdKlBhe1CIxR9GtmjtIR84O7feiGiBMUHQby2IJPCRtm0dGtBFaJUHtpOA2MHL1Aw321VsIGMrKXT/M4bt+R1ETZpigoCEcpazFwKAIP4UO1mqZw== rsa-key-20200101" From 6293c0331493705641ce2bf2eb9e9700080e795e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 15 Jan 2020 21:12:57 +0100 Subject: [PATCH 056/356] Switching pubkey to recover account --- roles/shell/tasks/users/sakhawkins.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/sakhawkins.yml b/roles/shell/tasks/users/sakhawkins.yml index 1e13bf49..dd516152 100644 --- a/roles/shell/tasks/users/sakhawkins.yml +++ b/roles/shell/tasks/users/sakhawkins.yml @@ -12,4 +12,4 @@ - authorized_key: user: sakhawkins state: present - key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHK+/S/13nmqUONdv6vsH911j+VNj+Ax/RPMTsgo/bNd" + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPXSUzAyJMouTDP+auIXOiAxiHbYR4ovkS92O1aNuJjq" From 7afafd45af1f01a04962887020b6a31022b42718 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 17 Jan 2020 08:52:26 -0500 Subject: [PATCH 057/356] Cleanup --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7b13f5e6..e936b71d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -154,7 +154,7 @@ - include: users/atdx.yml - include: users/dingb4t.yml - include: users/kronos.yml -- include: users/leonid.yml +#- include: users/leonid.yml - include: users/shark.yml - include: users/stereo.yml - include: users/joro.yml From 3551d424831d549619875e0367c2779f226849fe Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 17 Jan 2020 09:21:21 -0500 Subject: [PATCH 058/356] More cleanup --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c4f57ddd..6ada745f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -163,7 +163,7 @@ - include: users/clu.yml - include: users/sebre.yml - include: users/olya.yml -- include: users/kpeh.yml +#- include: users/kpeh.yml - include: users/saturnv.yml - include: users/chispitos.yml - include: users/bacterio.yml From fdde9674f127110abfa25bcf15d8c92a1961e4be Mon Sep 17 00:00:00 2001 From: fosslinux Date: Mon, 20 Jan 2020 12:11:44 +1100 Subject: [PATCH 059/356] refractor shell role --- roles/shell/files/bzflag.service | 14 ++ roles/shell/files/minecraft.service | 14 ++ roles/shell/tasks/apache2-mods.yml | 9 +- roles/shell/tasks/bzflag.yml | 19 +- roles/shell/tasks/minecraft.yml | 19 +- roles/shell/tasks/pb.yml | 2 +- roles/shell/tasks/users.yml | 315 ++++++++++++++-------------- roles/shell/tasks/vnc.yml | 2 +- 8 files changed, 202 insertions(+), 192 deletions(-) create mode 100644 roles/shell/files/bzflag.service create mode 100644 roles/shell/files/minecraft.service diff --git a/roles/shell/files/bzflag.service b/roles/shell/files/bzflag.service new file mode 100644 index 00000000..0642324b --- /dev/null +++ b/roles/shell/files/bzflag.service @@ -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 diff --git a/roles/shell/files/minecraft.service b/roles/shell/files/minecraft.service new file mode 100644 index 00000000..c78c9743 --- /dev/null +++ b/roles/shell/files/minecraft.service @@ -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 diff --git a/roles/shell/tasks/apache2-mods.yml b/roles/shell/tasks/apache2-mods.yml index c9955871..ea381ff4 100644 --- a/roles/shell/tasks/apache2-mods.yml +++ b/roles/shell/tasks/apache2-mods.yml @@ -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 diff --git a/roles/shell/tasks/bzflag.yml b/roles/shell/tasks/bzflag.yml index 29d9e49b..7fa6ce1f 100644 --- a/roles/shell/tasks/bzflag.yml +++ b/roles/shell/tasks/bzflag.yml @@ -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 diff --git a/roles/shell/tasks/minecraft.yml b/roles/shell/tasks/minecraft.yml index c02233d8..a7e2ec1d 100644 --- a/roles/shell/tasks/minecraft.yml +++ b/roles/shell/tasks/minecraft.yml @@ -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: diff --git a/roles/shell/tasks/pb.yml b/roles/shell/tasks/pb.yml index 6758af8f..635a5fc9 100644 --- a/roles/shell/tasks/pb.yml +++ b/roles/shell/tasks/pb.yml @@ -1,6 +1,6 @@ # install pb --- -- name: clone pb +- name: Clone pb git: repo: https://tildegit.org/tomasino/pb dest: /usr/src/pb diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c4f57ddd..dc971526 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -1,5 +1,5 @@ - --- + - group: name: tilde state: present @@ -8,168 +8,169 @@ name: sudo state: present -#Service accounts -- include: users/minecraft.yml +# Service accounts - include: users/bzflag.yml -- include: users/znc.yml - include: users/cherry.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 +- include: users/minecraft.yml +- include: users/znc.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/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/chuck.yml +- include: users/clu.yml +- include: users/cyber.yml +- include: users/cyphyx.yml +- include: users/d34d.yml +- include: users/dalist.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/dingb4t.yml -- include: users/kronos.yml -#- include: users/leonid.yml -- include: users/shark.yml -- include: users/stereo.yml -- include: users/joro.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/info.yml - include: users/infoTV.yml -- include: users/clu.yml -- include: users/sebre.yml -- include: users/olya.yml -- include: users/kpeh.yml -- include: users/saturnv.yml -- include: users/chispitos.yml -- include: users/bacterio.yml +#- include: users/init0.yml +#- include: users/isaac.yml - include: users/jac98.yml -- include: users/turboblack.yml -- include: users/d34d.yml +#- include: users/janda.yml +#- include: users/jin264.yml +#- include: users/johnc.yml +- include: users/joro.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/cyber.yml -- include: users/hamlet.yml +- include: users/olya.yml +- include: users/orliesaurus.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/stereo.yml +- include: users/swann.yml +#- include: users/syncore.yml +- include: users/techemporium.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 diff --git a/roles/shell/tasks/vnc.yml b/roles/shell/tasks/vnc.yml index 9a622973..2a267535 100644 --- a/roles/shell/tasks/vnc.yml +++ b/roles/shell/tasks/vnc.yml @@ -1,6 +1,6 @@ # install vnc scripts --- -- name: clone vnc +- name: Clone vnc git: repo: https://tildegit.org/thunix/vnc dest: /usr/src/vnc From ece3ab207b3a489a9164cca52e841cfdca3e9d68 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 20 Jan 2020 07:02:11 -0500 Subject: [PATCH 060/356] Fixed automerge --- roles/shell/tasks/users.yml | 38 ------------------------------------- 1 file changed, 38 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 75cbddca..ee68dd6a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -174,42 +174,4 @@ - include: users/yximdoa.yml #- include: users/z00t.yml - include: users/zszoke.yml -<<<<<<< HEAD -- 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/atdx.yml -- include: users/dingb4t.yml -- include: users/kronos.yml -#- include: users/leonid.yml -- include: users/shark.yml -- include: users/stereo.yml -- include: users/joro.yml -- include: users/info.yml -- include: users/infoTV.yml -- include: users/clu.yml -- include: users/sebre.yml -- include: users/olya.yml -#- include: users/kpeh.yml -- include: users/saturnv.yml -- include: users/chispitos.yml -- include: users/bacterio.yml -- include: users/jac98.yml -- include: users/turboblack.yml -- include: users/d34d.yml -- include: users/noce.yml -- include: users/cyber.yml -- include: users/hamlet.yml -======= ->>>>>>> fdde9674f127110abfa25bcf15d8c92a1961e4be - include: users/alotl.yml From 182b68bc0d050821844207fecf102c8b91583f50 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 20 Jan 2020 21:14:39 -0500 Subject: [PATCH 061/356] Installing racket --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5762c298..b76df2df 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -215,6 +215,7 @@ - qemu - qemu-efi - qemu-system + - racket - ranger - ruby-paint - ruby-trollop From 1af234520c9d2f27f779bb2f6b3062ee8fd48962 Mon Sep 17 00:00:00 2001 From: ubergeek Date: Tue, 21 Jan 2020 13:05:16 -0500 Subject: [PATCH 062/356] Update 'roles/shell/tasks/users/ubergeek.yml' --- roles/shell/tasks/users/ubergeek.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/shell/tasks/users/ubergeek.yml b/roles/shell/tasks/users/ubergeek.yml index a3884382..349ab62e 100644 --- a/roles/shell/tasks/users/ubergeek.yml +++ b/roles/shell/tasks/users/ubergeek.yml @@ -34,4 +34,8 @@ user: ubergeek state: present key: "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAA0NYVVAp4bcJlPCXU9HRHAwJHoyfI4IN0H6Tx/fdf56dzB6hR7SCKFLdmhaFkCZnlGWd4rLN1Phrem26ncsiOsBwEjzPFdlyOVCXfvheK17RsNT/D8zHXI6P06Soz0WzNCYD5NUVwtQJvs6ptA6fMUCOlmZapxyUW4pjMLkCbRKhuxQw==" +- authorized_key: + user: ubergeek + state: present + key: "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBL0VsUZQ9Rv+ATjE8q/gaaP/rM7tcae8Y/YDwKldnwEUvDjopv7TPiiQvoQXCC0CTqoscmyU3JSpn9jTJHYXQKs= dextop@localhost" \ No newline at end of file From 35fb9ab7257de056dcfbb0f8f511c9c9b1c4db1b Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 22 Jan 2020 10:39:52 -0500 Subject: [PATCH 063/356] Adding python-flask to shell role --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index b76df2df..a5a848d5 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -203,6 +203,7 @@ - proot - python - python-certbot-apache + - python-flask - python-pip - python-potr - python-twisted From dc6026115ae79e1e7a5516a51adaa9cd79db74f2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 22 Jan 2020 10:45:45 -0500 Subject: [PATCH 064/356] Adding python3-flask --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index a5a848d5..96d1f973 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -208,6 +208,7 @@ - python-potr - python-twisted - python3 + - python3-flask - python3-pip - python3-toot - python3-twisted From 248f5b9995a0da0f826d06b49a37d5f84f94bbe0 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 30 Jan 2020 06:46:02 -0500 Subject: [PATCH 065/356] Adding user yaya1 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/yaya1.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/yaya1.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index ee68dd6a..e9165d2f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -175,3 +175,4 @@ #- include: users/z00t.yml - include: users/zszoke.yml - include: users/alotl.yml +- include: users/yaya1.yml diff --git a/roles/shell/tasks/users/yaya1.yml b/roles/shell/tasks/users/yaya1.yml new file mode 100644 index 00000000..d85eef3b --- /dev/null +++ b/roles/shell/tasks/users/yaya1.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up yaya1 + user: + name: yaya1 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/yaya1 +- authorized_key: + user: yaya1 + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIgZ57G+9TCweYpTjci1SFrLTCTlOtSXBB4/PMusEOcmIkXoTtBQjR8fawcuRsyJGdS8zNhtkCO/FV4i1R8Gz9rgr1O9jYMQ3i733X3kp6Txp6D0Tcs2nU6k8gjbDAsnGSvjMenjac6hHoYepMPdflOA/Was+c7HjgrNq1i5qVOTcKKfgKDLWgqJN+AsEYqdddzAY/w+TMfcYb12kxjDUVjsDNZI4VssKgXHjcK1EVHW6BMmicRkdc8SMECITeqqV7g3RetvSk1kWDkFOnlNgyaUHJCPoi88B54oT7H1Piq95CqnOJXdAZiF8Ls1SXAD5O/stA5gbym6y3TVZkK7Ov" From aa12efc06233b8448ac0aacd2bfe268f4660e660 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 30 Jan 2020 07:00:07 -0500 Subject: [PATCH 066/356] Adding user spike --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/spike.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/spike.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e9165d2f..fbd031e3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -176,3 +176,4 @@ - include: users/zszoke.yml - include: users/alotl.yml - include: users/yaya1.yml +- include: users/spike.yml diff --git a/roles/shell/tasks/users/spike.yml b/roles/shell/tasks/users/spike.yml new file mode 100644 index 00000000..5ad46329 --- /dev/null +++ b/roles/shell/tasks/users/spike.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up spike + user: + name: spike + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/spike +- authorized_key: + user: spike + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAgM1zTt0k+vNSUrTtdamKdrTQL1JbCsKYMt9EY3iR1fwS9GFRZHZLA3LJpebgX9Byr8AmLbxr+axrF+dF6ulR3jIbDT20WU83v7uExnQvNMX4yhos4O8qdJomuPPwDP/GMwdwl/BiAc1mo4Bs6MD4zhgELlTVwxBQbnJ4U1adp0SlFkgzARYYTxqxUXt6/tb1Mb873syAwlefFRsZ3Nrbk+lMkKFzOv+CpppAwLYnGAkaE57bxjECm+X4CM7Naf1dU5PQqRrEM4nr8ZhKbn0XhkY0QRbWs2HNdN4NsVkw5mUfRrN3oFrfBxHq21R65pypAxopqCG5i9NIOrUjhZReBQ==" From 6267c9da335bb199e174a1c7e7b5db5989b958dc Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 30 Jan 2020 07:13:19 -0500 Subject: [PATCH 067/356] Adding user grifit --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/grifit.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/grifit.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index fbd031e3..22c46b9f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -177,3 +177,4 @@ - include: users/alotl.yml - include: users/yaya1.yml - include: users/spike.yml +- include: users/grifit.yml diff --git a/roles/shell/tasks/users/grifit.yml b/roles/shell/tasks/users/grifit.yml new file mode 100644 index 00000000..4a01e41b --- /dev/null +++ b/roles/shell/tasks/users/grifit.yml @@ -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/" From a7f8bf89d529c216e95c8e1b111f0cd8f08842f2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 30 Jan 2020 11:22:03 -0500 Subject: [PATCH 068/356] Adding packages required for api interface --- roles/common/tasks/packages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 6065d45f..dab9f697 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -49,7 +49,11 @@ - python-selinux - python-xmltodict - python-yaml + - python3-flask + - python3-flask-restful + - python3-flask-api - python3-pip + - python3-psutil - python3-pymysql - sqlite - sudo From 3eb093ea3267abfaad181f53a75edb859b3ca232 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 31 Jan 2020 21:47:26 -0500 Subject: [PATCH 069/356] Adding user denzuko --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/denzuko.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/denzuko.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 22c46b9f..5e144301 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -178,3 +178,4 @@ - include: users/yaya1.yml - include: users/spike.yml - include: users/grifit.yml +- include: users/denzuko.yml diff --git a/roles/shell/tasks/users/denzuko.yml b/roles/shell/tasks/users/denzuko.yml new file mode 100644 index 00000000..19dae151 --- /dev/null +++ b/roles/shell/tasks/users/denzuko.yml @@ -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" From 279e24d028ca16decb83f714e5711b0cc896ea1c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 31 Jan 2020 22:33:38 -0500 Subject: [PATCH 070/356] Adding user lagom --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lagom.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lagom.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5e144301..c63b4d0d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -179,3 +179,4 @@ - include: users/spike.yml - include: users/grifit.yml - include: users/denzuko.yml +- include: users/lagom.yml diff --git a/roles/shell/tasks/users/lagom.yml b/roles/shell/tasks/users/lagom.yml new file mode 100644 index 00000000..fa54317d --- /dev/null +++ b/roles/shell/tasks/users/lagom.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lagom + user: + name: lagom + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lagom +- authorized_key: + user: lagom + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1EM+CZGMyhkzVgqJhtPD9r8OK9OHYkKN36nWt7H1l0MQG8lpdm8zsPJD411JQW16EQc6HIIFBZN8+W7aYJAeWiHxGJ1W9XWseOfeA725MM0He+5TTK7zPohSSFlp9wciQrHRA6N8C9e0tFX03acCTVqAhn7WYQS5a2XDI0EmNkv/zKQzR88gL8F+1m9YT8NS3bIdblWe3ZTy/kh0cvGzx4yIEZpmHBphziy/8q+DnK2VaRUeuIjqh7jo6hmt9hk5r8LHKbYJkSFe91Lqb7GX+aehYJf1ZfXJo69bd4wDZsUDV6RL1JqNzbkAccQ0tGQXaTgt/vHS5zV+8e+E5yWc1" From aaca9e221c2035d9fe521a6e187305b5c4dac94d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 1 Feb 2020 20:55:38 -0500 Subject: [PATCH 071/356] Pruned old user accounts --- roles/shell/tasks/users.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c63b4d0d..57087b8f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -50,7 +50,7 @@ #- include: users/derby.yml - include: users/dex.yml - include: users/diabla.yml -- include: users/dingb4t.yml +#- include: users/dingb4t.yml #- include: users/dot.yml - include: users/dovahkin.yml #- include: users/dragon.yml @@ -100,7 +100,7 @@ #- include: users/makassar.yml #- include: users/makmur.yml #- include: users/mandelbroth.yml -- include: users/marc.yml +#- include: users/marc.yml #- include: users/mks.yml - include: users/ml.yml #- include: users/mom.yml @@ -113,7 +113,7 @@ - include: users/neo.yml - include: users/noce.yml - include: users/olya.yml -- include: users/orliesaurus.yml +#- include: users/orliesaurus.yml #- include: users/os.yml #- include: users/panzer.yml #- include: users/parik.yml @@ -144,7 +144,7 @@ - include: users/southerntofu.yml #- include: users/spanmer.yml #- include: users/stenli990801.yml -- include: users/stereo.yml +#- include: users/stereo.yml - include: users/swann.yml #- include: users/syncore.yml - include: users/techemporium.yml From b321d1a3585f31807c7b779fd82e0a6baba7f4e2 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 2 Feb 2020 16:38:36 -0500 Subject: [PATCH 072/356] some cleanup --- roles/shell/tasks/users.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 57087b8f..1d6918b5 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -43,7 +43,7 @@ - include: users/cyber.yml - include: users/cyphyx.yml - include: users/d34d.yml -- include: users/dalist.yml +#- include: users/dalist.yml #- include: users/danielscode.yml - include: users/dariusz.yml #- include: users/delta.yml @@ -86,7 +86,7 @@ #- include: users/jundi.yml #- include: users/k4j.yml - include: users/khuxkm.yml -- include: users/kpeh.yml +#- include: users/kpeh.yml - include: users/kronos.yml #- include: users/krystianbajno.yml #- include: users/larasaty.yml From e0595c5e7b3935b1270a37fe7eae189b7b4b272f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 3 Feb 2020 19:26:35 -0500 Subject: [PATCH 073/356] Re-enabling logique --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 1d6918b5..d49628fc 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -94,7 +94,7 @@ #- include: users/letamesis.yml - include: users/liesinties.yml - include: users/linel.yml -#- include: users/logique.yml +- include: users/logique.yml - include: users/lugubris.yml #- include: users/lytedev.yml #- include: users/makassar.yml From 15bf3b9de816d573d706f6e5915e6022d718dcce Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 4 Feb 2020 14:20:42 -0500 Subject: [PATCH 074/356] Adding user calamitous --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/calamitous.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/calamitous.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d49628fc..a46967ba 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -180,3 +180,4 @@ - include: users/grifit.yml - include: users/denzuko.yml - include: users/lagom.yml +- include: users/calamitous.yml diff --git a/roles/shell/tasks/users/calamitous.yml b/roles/shell/tasks/users/calamitous.yml new file mode 100644 index 00000000..de15537f --- /dev/null +++ b/roles/shell/tasks/users/calamitous.yml @@ -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" From f8de1a1e4dd52c92210874e7a5d8d636c1e331e0 Mon Sep 17 00:00:00 2001 From: Anton McClure Date: Thu, 6 Feb 2020 17:32:17 +0000 Subject: [PATCH 075/356] add ssh key --- roles/shell/tasks/users/amcclure.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/shell/tasks/users/amcclure.yml b/roles/shell/tasks/users/amcclure.yml index 741263a6..9e7ffb5e 100644 --- a/roles/shell/tasks/users/amcclure.yml +++ b/roles/shell/tasks/users/amcclure.yml @@ -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" From 39e4df693992751134acffafbd7a7af1635d198f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 6 Feb 2020 12:41:28 -0500 Subject: [PATCH 076/356] Added trailing colon --- roles/shell/tasks/users/amcclure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/amcclure.yml b/roles/shell/tasks/users/amcclure.yml index 9e7ffb5e..2a8bb3f8 100644 --- a/roles/shell/tasks/users/amcclure.yml +++ b/roles/shell/tasks/users/amcclure.yml @@ -24,7 +24,7 @@ user: amcclure state: present key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIMF+N1NxdN2SBb7Yyk+d4ThVoO87bRSYhEqgR2K9gA4 amcclure@lake" -- authorized_key +- authorized_key: user: amcclure state: present key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGCA/TGxVNNVHevXq96yrMT3suUrPO+v93NqLC2wjEv0 anton@antonmcclure.com" From f3d2f2ff8740cd6c602538f9bd8983c784f05b47 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 12 Feb 2020 07:01:47 -0500 Subject: [PATCH 077/356] Adding user sleepless9 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sleepless9.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sleepless9.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index a46967ba..211b73d9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -181,3 +181,4 @@ - include: users/denzuko.yml - include: users/lagom.yml - include: users/calamitous.yml +- include: users/sleepless9.yml diff --git a/roles/shell/tasks/users/sleepless9.yml b/roles/shell/tasks/users/sleepless9.yml new file mode 100644 index 00000000..802d2695 --- /dev/null +++ b/roles/shell/tasks/users/sleepless9.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sleepless9 + user: + name: sleepless9 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sleepless9 +- authorized_key: + user: sleepless9 + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCxknrOaESZWqQ/Is7mlcwYZlZC/42+BJiRl8aDCEqvZ0ul7SurwatHw0hkEhMgpTKbe6djg9hDBhJX4NBlbi9Jo6lIt1O9fXhGwsNtdiBbpH/0tiCiseSGAs56sTMR4QNm0DoIUZAWc49uuU9rpr2hCandAeqoIHAdUg5+Ysy0D7isvlPsaPKfu1nru1F/OddHWF8y4OnqVEryE43wtFraXVrHbuasNLKCO9T8o2OPzhoFEpTHJZhH+LWIuBsS4aAp7h+JNDsvk3Gy9FoLofmTnBQ0ZY28EvP4A9Z0KYD0MxZr1m2jjuIKSWck/81XSuS4fhUewmweU/BkKSXttQFL" From 9d6b2dcdd607bebd4f0aa1e9eff57b71df8b6e0b Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 15 Feb 2020 11:38:44 -0500 Subject: [PATCH 078/356] Adding user stelima --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/stelima.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/stelima.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 211b73d9..910c5c69 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -182,3 +182,4 @@ - include: users/lagom.yml - include: users/calamitous.yml - include: users/sleepless9.yml +- include: users/stelima.yml diff --git a/roles/shell/tasks/users/stelima.yml b/roles/shell/tasks/users/stelima.yml new file mode 100644 index 00000000..d0037e58 --- /dev/null +++ b/roles/shell/tasks/users/stelima.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up stelima + user: + name: stelima + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/stelima +- authorized_key: + user: stelima + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAu6fJ3m8lBFdYzR5D6U2S3u44oo2bvjh3wMxhoxvuwHFtvQzIp/+acDi93ioLkAuznaJIDpBBW+jd2JBsEvzHLJzCy8Cc8mrBEHx4aHXHZaQM/YYeSj12pVQNME63mpmGf6PogtJeMYAYr1Fo8u4GyQf+jV9XNRZkkAl5uZzqMhknhmM/Mzc87d9rKUo7faf13BBrfdalwY37YEIfU+8IIXyef0miBxpF35HkLDYto5hQ9mJ7oH1ARgXEUJEZL+7JRHKnxToKnxGUWCRy0URIesPL7Yv0y7mFatqj3fEjSOHzXthz572Htw44jWJwwSv9FbhSVsRoplGs61GupeBk0w== ste@MAZZETTO" From deb6c37502fec3aa8fb748718d051c4ea13e0211 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 15 Feb 2020 11:54:07 -0500 Subject: [PATCH 079/356] Adding user gagrilli --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gagrilli.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gagrilli.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 910c5c69..3daf8fd5 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -183,3 +183,4 @@ - include: users/calamitous.yml - include: users/sleepless9.yml - include: users/stelima.yml +- include: users/gagrilli.yml diff --git a/roles/shell/tasks/users/gagrilli.yml b/roles/shell/tasks/users/gagrilli.yml new file mode 100644 index 00000000..600a66ff --- /dev/null +++ b/roles/shell/tasks/users/gagrilli.yml @@ -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" From 786a3158350d3f0c1dbff6d1f85b6fcc3ed8a440 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 16 Feb 2020 18:03:49 -0500 Subject: [PATCH 080/356] Post migration fix, playbook runs, with bugs forthcoming --- hosts | 6 +++--- roles/shell/tasks/packages.yml | 22 +++++++++++----------- roles/webserver/tasks/apache.yml | 20 -------------------- roles/webserver/tasks/main.yml | 2 +- roles/webserver/tasks/packages.yml | 2 +- 5 files changed, 16 insertions(+), 36 deletions(-) diff --git a/hosts b/hosts index 1d830889..7622ec81 100644 --- a/hosts +++ b/hosts @@ -3,11 +3,11 @@ ansible_connection=local ansible_python_interpreter=/usr/bin/python3 [common] -thunix.net +localhost [shell] -thunix.net +localhost [webserver] -thunix.net +localhost diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 96d1f973..e1740862 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -83,7 +83,7 @@ - cowsay - devscripts - dos2unix - - dosemu +# - dosemu - dovecot-pop3d - dovecot-core - dovecot-imapd @@ -101,7 +101,7 @@ - gitweb - gopher - gnome-icon-theme - - gnome-icon-theme-extras +# - gnome-icon-theme-extras - htop - hugo - ident2 @@ -142,13 +142,13 @@ - mc-data - 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 @@ -158,7 +158,7 @@ - mkdocs - mkdocs-doc - mkdocs-bootstrap - - mkdocs-bootswatch +# - mkdocs-bootswatch - mono-apache-server - mono-complete - mono-dbg @@ -167,9 +167,9 @@ - moon-buggy - mosh - mutt - - mysql-client +# - mysql-client - nasm - - nbsdgames +# - nbsdgames - neofetch - neomutt - newsbeuter @@ -205,7 +205,7 @@ - python-certbot-apache - python-flask - python-pip - - python-potr +# - python-potr - python-twisted - python3 - python3-flask diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index b9ddfd1b..c62eb1be 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -8,11 +8,6 @@ mode: 744 #Sites -- name: Deploy Apache2 Site Config 000-default.conf - copy: - src: ../files/etc/apache2/sites-available/000-default.conf - dest: /etc/apache2/sites-available/000-default.conf - - name: Deploy Apache2 Site Config default-ssl.conf copy: src: ../files/etc/apache2/sites-available/default-ssl.conf @@ -48,21 +43,6 @@ src: ../files/etc/apache2/sites-available/ftp.thunix.net.conf dest: /etc/apache2/sites-available/ftp.thunix.net.conf -- name: Deploy apache2 site conf for forums.thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/forums.thunix.net.conf - dest: /etc/apache2/sites-available/forums.thunix.net.conf - -- name: Deploy apache2 site conf for git.thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/git.thunix.net.conf - dest: /etc/apache2/sites-available/git.thunix.net.conf - -- name: Deploy apache2 site conf for lists.thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/lists.thunix.net.conf - dest: /etc/apache2/sites-available/lists.thunix.net.conf - - name: Deploy apache2 site conf for staticadventures.netlib.re copy: src: ../files/etc/apache2/sites-available/staticadventures.netlib.re.conf diff --git a/roles/webserver/tasks/main.yml b/roles/webserver/tasks/main.yml index 5d0bc566..4f8c5648 100644 --- a/roles/webserver/tasks/main.yml +++ b/roles/webserver/tasks/main.yml @@ -3,7 +3,7 @@ - include: packages.yml #- include: users.yml -- include: apache.yml +#- include: apache.yml - include: codedeploy.yml - include: apache2-mods.yml - include: tor.yml diff --git a/roles/webserver/tasks/packages.yml b/roles/webserver/tasks/packages.yml index 096e51c9..94a915a8 100644 --- a/roles/webserver/tasks/packages.yml +++ b/roles/webserver/tasks/packages.yml @@ -29,7 +29,7 @@ - apache2 - createrepo - dpkg-dev - - gophernicus +# - gophernicus - mariadb-client - mariadb-server - php-imagick From 0a95ccbe5fa4731f454b7b14ec07f89570b95eee Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 18 Feb 2020 22:33:45 -0500 Subject: [PATCH 081/356] PHP for the people! --- roles/webserver/tasks/codedeploy.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/webserver/tasks/codedeploy.yml b/roles/webserver/tasks/codedeploy.yml index 292f279a..475221b2 100644 --- a/roles/webserver/tasks/codedeploy.yml +++ b/roles/webserver/tasks/codedeploy.yml @@ -77,6 +77,14 @@ group: root mode: 0644 +- name: Enable php for userdirs + copy: + src: ../files/etc/apache2/mods-available/php7.3.conf + dest: /etc/apache2/mods-available/php7.3.conf + owner: root + group: root + mode: 0644 + - name: Enabling ansible-pull units systemd: name: "{{ item }}" From 09667b9ee39701fbb67e1dcce9a4c4060cf2dc3c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 22 Feb 2020 11:16:47 -0500 Subject: [PATCH 082/356] Adding pwgen --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index e1740862..360da8e8 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -179,6 +179,7 @@ - openssl - p7zip-full - pandoc + - pwgen - pelican - pelican-doc - php-imagick From 913649799b80b25dc74f566fa56192ce434f8ef5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 22 Feb 2020 18:40:00 +0100 Subject: [PATCH 083/356] to include /var/spool/cron and /var/spool/anacron in backup --- roles/shell/files/usr/local/bin/backup | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) mode change 100755 => 100644 roles/shell/files/usr/local/bin/backup diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup old mode 100755 new mode 100644 index ebef9333..778cfa64 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,24 @@ #!/bin/bash -tar -cvz --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/*' -f /var/backups/`date +%Y%m%d`.tgz /home/ /var/games/minetest-server/.minetest/ /var/lib/minecraft/paperclip/ /var/lib/bzflag/ +tar -cvz \ + --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/*' \ + /home/ \ + /var/games/minetest-server/.minetest/ \ + /var/lib/minecraft/paperclip/ \ + /var/lib/bzflag/ \ + /var/spool/cron/ \ + /var/spool/anacron/ \ + -f /var/backups/`date +%Y%m%d`.tgz chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz From c170f54388983b78cd16afde7ceb522ee5207e9c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 22 Feb 2020 16:39:26 -0500 Subject: [PATCH 084/356] Adding user hlv --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/hlv.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/hlv.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 3daf8fd5..e40fcbed 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -184,3 +184,4 @@ - include: users/sleepless9.yml - include: users/stelima.yml - include: users/gagrilli.yml +- include: users/hlv.yml diff --git a/roles/shell/tasks/users/hlv.yml b/roles/shell/tasks/users/hlv.yml new file mode 100644 index 00000000..3cc6de25 --- /dev/null +++ b/roles/shell/tasks/users/hlv.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up hlv + user: + name: hlv + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/hlv +- authorized_key: + user: hlv + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC5jIVU8sshnNBiWDxCcLauNVcc/F6W/vKomMkV2RO3XUc5E0CXsbXGlXLcS/RGNYhogrvo+ONY5DFspa7Z9JXtsgXPkHphW0g60xDl2nTAvmSfy8IgtjIR3Z8ccREaYkozItbsrSzDeN+IG95mhg/ipDplNQ9Fv1Uy6vLhCnpU3mIrvv1cq93P5DbTOIvBj9N5UzPgxEyeqoMj/uudDH8fj0NSR7ggdgGiNSZFp0BEuxttyPk7rAnsVJEJHcWlCV4fKpaTWuL0/QaqjWgiKeu/gO3vOZaU42uobci+ePhO5luRHoVugSIaNutzQLdnHvTXh+WtPl6VlBlt3xaAYkil par@thinkpar" From f392622c5396a63d44d5ea32197e121531c74e6d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 22 Feb 2020 21:41:39 -0500 Subject: [PATCH 085/356] Updating the apache conf for www.thunix --- .../sites-available/www.thunix.net.conf | 35 ++----------------- 1 file changed, 2 insertions(+), 33 deletions(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/www.thunix.net.conf b/roles/webserver/files/etc/apache2/sites-available/www.thunix.net.conf index cd776a23..da35611f 100644 --- a/roles/webserver/files/etc/apache2/sites-available/www.thunix.net.conf +++ b/roles/webserver/files/etc/apache2/sites-available/www.thunix.net.conf @@ -18,37 +18,6 @@ Require method GET POST OPTIONS + Redirect permanent / https://thunix.net/ + - - - ServerAdmin webmaster@thunix.net - ServerName www.thunix.net - DocumentRoot /var/www/thunix.cf - ErrorLog ${APACHE_LOG_DIR}/error.log - CustomLog ${APACHE_LOG_DIR}/access.log combined - - AllowOverride All - Order deny,allow - Deny from all - - - UserDir public_html - UserDir disabled root - - AllowOverride FileInfo AuthConfig Limit Indexes - Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec - Require method GET POST OPTIONS - - - Options Indexes FollowSymLinks MultiViews - # changed from None to FileInfo - AllowOverride FileInfo - Order allow,deny - allow from all - - -Include /etc/letsencrypt/options-ssl-apache.conf -SSLCertificateFile /etc/letsencrypt/live/www.thunix.net/fullchain.pem -SSLCertificateKeyFile /etc/letsencrypt/live/www.thunix.net/privkey.pem - - From 35cb6357b986eec31ab2962dee06b8c6e8159660 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 24 Feb 2020 08:41:10 -0500 Subject: [PATCH 086/356] Adding user baruchel --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/baruchel.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/baruchel.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e40fcbed..7dbefd71 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -185,3 +185,4 @@ - include: users/stelima.yml - include: users/gagrilli.yml - include: users/hlv.yml +- include: users/baruchel.yml diff --git a/roles/shell/tasks/users/baruchel.yml b/roles/shell/tasks/users/baruchel.yml new file mode 100644 index 00000000..2a3ed666 --- /dev/null +++ b/roles/shell/tasks/users/baruchel.yml @@ -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" From 8454d14f33c5721aa03306bb0778c41ce3e3680f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 24 Feb 2020 08:47:29 -0500 Subject: [PATCH 087/356] disbaling task for postfix for now --- roles/shell/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/main.yml b/roles/shell/tasks/main.yml index 4040d3dc..7028d226 100644 --- a/roles/shell/tasks/main.yml +++ b/roles/shell/tasks/main.yml @@ -10,7 +10,7 @@ - include: minetest.yml - include: minecraft.yml - include: dovecot.yml -- include: postfix.yml +#- include: postfix.yml - include: iris.yml - include: gopher.yml - include: pb.yml From 6650f025cabe452ef60f566a84efc91c99551257 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 27 Feb 2020 08:59:14 -0500 Subject: [PATCH 088/356] Adding user tryffel --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/tryffel.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/tryffel.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7dbefd71..92a5571e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -186,3 +186,4 @@ - include: users/gagrilli.yml - include: users/hlv.yml - include: users/baruchel.yml +- include: users/tryffel.yml diff --git a/roles/shell/tasks/users/tryffel.yml b/roles/shell/tasks/users/tryffel.yml new file mode 100644 index 00000000..5f127c4c --- /dev/null +++ b/roles/shell/tasks/users/tryffel.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up tryffel + user: + name: tryffel + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/tryffel +- authorized_key: + user: tryffel + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDA+03/pCraYL6Gg2y8vdekzyO52cdN72qJ8JY8wQ+leYzR+29mIdTThSfig03C15KzV/7ORKdGgtQDnNAgbZsNmu9w96kCUGlXy/tnIfu1rBSGxVFuosoZFXe719iBtBxBV7YUP4jjASaXZ0fXq0etzcyBdPK6Hu5LbAVTPTM0NehY0Tp4EjgFRmWbSRFeWuCzAMy78SvXRBYXXquaF8X9L7Dp6TMsBEZVJa1f0EdZaXUCRJuGTdEIfpl+pRpCS7ulGBKd0X7TP0Tc3JUcuEkDxVNMt4pZCoKQRq3KXt6dqYOl7iFm/Q7oVbtMGo47cfUlk7SSEFXhY45Qy5L+5gGp" From aac1d257624fc443d41685dbcf5adec646c74b5d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 27 Feb 2020 09:00:26 -0500 Subject: [PATCH 089/356] Adding user fro --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/fro.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/fro.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 92a5571e..5a09823a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -187,3 +187,4 @@ - include: users/hlv.yml - include: users/baruchel.yml - include: users/tryffel.yml +- include: users/fro.yml diff --git a/roles/shell/tasks/users/fro.yml b/roles/shell/tasks/users/fro.yml new file mode 100644 index 00000000..0ab9d838 --- /dev/null +++ b/roles/shell/tasks/users/fro.yml @@ -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" From 473c4d0d710c31022986ab1c6ed9c8de05432b64 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 27 Feb 2020 09:01:15 -0500 Subject: [PATCH 090/356] Adding user fauly --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/fauly.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/fauly.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5a09823a..49e0d9c3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -188,3 +188,4 @@ - include: users/baruchel.yml - include: users/tryffel.yml - include: users/fro.yml +- include: users/fauly.yml diff --git a/roles/shell/tasks/users/fauly.yml b/roles/shell/tasks/users/fauly.yml new file mode 100644 index 00000000..1d826ae8 --- /dev/null +++ b/roles/shell/tasks/users/fauly.yml @@ -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==" From f17fb080ab6cb3933826e7826720c6cd41e5453c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 27 Feb 2020 09:03:28 -0500 Subject: [PATCH 091/356] Adding user k0tletka --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/k0tletka.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/k0tletka.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 49e0d9c3..37fc9279 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -189,3 +189,4 @@ - include: users/tryffel.yml - include: users/fro.yml - include: users/fauly.yml +- include: users/k0tletka.yml diff --git a/roles/shell/tasks/users/k0tletka.yml b/roles/shell/tasks/users/k0tletka.yml new file mode 100644 index 00000000..39f05cf0 --- /dev/null +++ b/roles/shell/tasks/users/k0tletka.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up k0tletka + user: + name: k0tletka + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/k0tletka +- authorized_key: + user: k0tletka + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDSiarlHqYrYHe3++aV1hIZWZwLR+zyh5oFE9mC6c6eFsSO7FtuA1/D8fDMdbeSMrHWmh5THr9klfxp2ARJQ6ENDWd+44O5fHyYARrQNU4vtehsR+GOv6x+0xPeilRdRBS5VdiCjRG5Nxk/maZG9HD9/Kv4BGIPbx2/jvEk7DwPurPOIZoJfpffk/LjlkY1xhXMCIm8zcZIEoTB0Hw63wC95DkCWwcC7i9+8BMsCiNQ1Uu/eupka8JWTtfuWgnHxyH3bTMoTbyMmdCN/kRtqVnQ3qmAfIjumAZd1VJKZYxm9BlCLj30UnkT4Wxs9NFbtwwkPUEGvFMyU3dloMQQtGa/" From a03ae1dc59bfa18f7127ec89bd2d944780a25f22 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 27 Feb 2020 09:13:49 -0500 Subject: [PATCH 092/356] Removing unstable repo so it stops biting us --- roles/shell/tasks/packages.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 360da8e8..4e03bd83 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -47,12 +47,6 @@ 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' From 3e27130a1b43e20d91bc2fe5dd79194d95b28b66 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 4 Mar 2020 06:59:53 -0500 Subject: [PATCH 093/356] Adding user arten --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/arten.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/arten.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 37fc9279..41932601 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -190,3 +190,4 @@ - include: users/fro.yml - include: users/fauly.yml - include: users/k0tletka.yml +- include: users/arten.yml diff --git a/roles/shell/tasks/users/arten.yml b/roles/shell/tasks/users/arten.yml new file mode 100644 index 00000000..ae8e8309 --- /dev/null +++ b/roles/shell/tasks/users/arten.yml @@ -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" From bbc2c92014060bee9e76cdb3e12c10c624667ad5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 9 Mar 2020 22:59:47 +0100 Subject: [PATCH 094/356] to load dynamic library 'ps.so' - PostScript functions --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 4e03bd83..8a531543 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -185,6 +185,7 @@ - php-imap - php-intl - php-mysql + - php-ps - php-pspell - php-recode - php-sqlite3 From 41a743d0abbfd6f6894c6171a38529ed3ceba224 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 9 Mar 2020 23:21:11 +0100 Subject: [PATCH 095/356] Adding user realvindic --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/realvindic.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/realvindic.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 41932601..94252dc9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -191,3 +191,4 @@ - include: users/fauly.yml - include: users/k0tletka.yml - include: users/arten.yml +- include: users/realvindic.yml diff --git a/roles/shell/tasks/users/realvindic.yml b/roles/shell/tasks/users/realvindic.yml new file mode 100644 index 00000000..deefbd16 --- /dev/null +++ b/roles/shell/tasks/users/realvindic.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up realvindic + user: + name: realvindic + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/realvindic +- authorized_key: + user: realvindic + state: present + key: "AAAAB3NzaC1yc2EAAAADAQABAAABgQDC1hLIh6FOkswP4LN019kKiBsZNastvMqNzjeCa2yQCqZBbnCDaeMS3lrOz1NzFQE5hGoJBEaXeyXrIvT0UY0cOL7Lr5qa5MZEMbWcQmpNHq81/CqcAGIEEChqCkAD6rqD+mW6kopKrzRMaWae01vTGpBa5YzQuZdH7+w2Oye/5KWbc0q+wJciQmnvEhz+ic3ymF1etfFpDwP0ONkB21XTAPoXJJ9keAULhIY4CG1YTrIM0dEeej4hKu1XyPxQnBM1fCbfLKXKStBrQFgvq6tBNTSDFYZc2XvaLQbcSNyssBGjz7BavqjlJfqhaWe1qrKKq7anZDxPIxkAQpsFvkQgz0I8qB3TkgihFUO2ZeYdMjcUVUAIQpk1F7UsEtQoYG306nsgomgdSWNu8AVx597zRo14E9SuPPIIf+IAx7EmO8OCmyfz4Aw/IRSniK2Q195YC/1fXJnrXwNmrg7vRUChWCffkMd7dCJJAxPd8SX6GgLVB/TtTwsg+6le/CqaWrM" From bd29241244043515a3130d9f460f064dde4033bc Mon Sep 17 00:00:00 2001 From: ubergeek Date: Wed, 11 Mar 2020 07:48:32 -0400 Subject: [PATCH 096/356] Update 'roles/shell/tasks/users/realvindic.yml' --- roles/shell/tasks/users/realvindic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/realvindic.yml b/roles/shell/tasks/users/realvindic.yml index deefbd16..439811be 100644 --- a/roles/shell/tasks/users/realvindic.yml +++ b/roles/shell/tasks/users/realvindic.yml @@ -12,4 +12,4 @@ - authorized_key: user: realvindic state: present - key: "AAAAB3NzaC1yc2EAAAADAQABAAABgQDC1hLIh6FOkswP4LN019kKiBsZNastvMqNzjeCa2yQCqZBbnCDaeMS3lrOz1NzFQE5hGoJBEaXeyXrIvT0UY0cOL7Lr5qa5MZEMbWcQmpNHq81/CqcAGIEEChqCkAD6rqD+mW6kopKrzRMaWae01vTGpBa5YzQuZdH7+w2Oye/5KWbc0q+wJciQmnvEhz+ic3ymF1etfFpDwP0ONkB21XTAPoXJJ9keAULhIY4CG1YTrIM0dEeej4hKu1XyPxQnBM1fCbfLKXKStBrQFgvq6tBNTSDFYZc2XvaLQbcSNyssBGjz7BavqjlJfqhaWe1qrKKq7anZDxPIxkAQpsFvkQgz0I8qB3TkgihFUO2ZeYdMjcUVUAIQpk1F7UsEtQoYG306nsgomgdSWNu8AVx597zRo14E9SuPPIIf+IAx7EmO8OCmyfz4Aw/IRSniK2Q195YC/1fXJnrXwNmrg7vRUChWCffkMd7dCJJAxPd8SX6GgLVB/TtTwsg+6le/CqaWrM" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDC1hLIh6FOkswP4LN019kKiBsZNastvMqNzjeCa2yQCqZBbnCDaeMS3lrOz1NzFQE5hGoJBEaXeyXrIvT0UY0cOL7Lr5qa5MZEMbWcQmpNHq81/CqcAGIEEChqCkAD6rqD+mW6kopKrzRMaWae01vTGpBa5YzQuZdH7+w2Oye/5KWbc0q+wJciQmnvEhz+ic3ymF1etfFpDwP0ONkB21XTAPoXJJ9keAULhIY4CG1YTrIM0dEeej4hKu1XyPxQnBM1fCbfLKXKStBrQFgvq6tBNTSDFYZc2XvaLQbcSNyssBGjz7BavqjlJfqhaWe1qrKKq7anZDxPIxkAQpsFvkQgz0I8qB3TkgihFUO2ZeYdMjcUVUAIQpk1F7UsEtQoYG306nsgomgdSWNu8AVx597zRo14E9SuPPIIf+IAx7EmO8OCmyfz4Aw/IRSniK2Q195YC/1fXJnrXwNmrg7vRUChWCffkMd7dCJJAxPd8SX6GgLVB/TtTwsg+6le/CqaWrM" From ff76a59ee1bc8f8bcae63be45dd24b1d21f7aed9 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 23 Mar 2020 08:21:38 -0400 Subject: [PATCH 097/356] Adding user ramos --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ramos.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ramos.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 94252dc9..6e1e4463 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -192,3 +192,4 @@ - include: users/k0tletka.yml - include: users/arten.yml - include: users/realvindic.yml +- include: users/ramos.yml diff --git a/roles/shell/tasks/users/ramos.yml b/roles/shell/tasks/users/ramos.yml new file mode 100644 index 00000000..65f27a0c --- /dev/null +++ b/roles/shell/tasks/users/ramos.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up ramos + user: + name: ramos + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/ramos +- authorized_key: + user: ramos + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDw0jte+jkHtj7IiC0R1ksCm+w94JyWwEWHfO5FA2e+t4ykS4K2zFXgTXdel5WiMvRhwSnxfpTFxXwVMFcgDr3JC6jy0n/cZZ+p2FIlNVOyhDI0ry8T/6gJxQhdlDNKXZak/VcoOqOUNEEX4L5lyfK+sjY6vKTR301Ly+blPVjf3xpRNWfaGlpOCmxKqtJVOaFJ7VSTX/H8x9FS9ChQZ8zgHv8He/hxgl9pWQlsXB2V1umpjV6r026/7m3LgU74LWKK4PkrmnypazT/3v/WXNGA6eF/07et179tnIRNWGZjd+b6+kbsGZOPZ9ScRTyTzCMSl1gg4uEfjiw3vjxZs3wR" From 20ce4073080b36cd542fc44db84ea206c61e2842 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 25 Mar 2020 07:36:38 -0400 Subject: [PATCH 098/356] Adding user sem --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sem.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sem.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6e1e4463..6761503e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -193,3 +193,4 @@ - include: users/arten.yml - include: users/realvindic.yml - include: users/ramos.yml +- include: users/sem.yml diff --git a/roles/shell/tasks/users/sem.yml b/roles/shell/tasks/users/sem.yml new file mode 100644 index 00000000..f8fa33a8 --- /dev/null +++ b/roles/shell/tasks/users/sem.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sem + user: + name: sem + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sem +- authorized_key: + user: sem + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDoUsY8SHxDi7jf/DKGZHg/U1DOD+MC+47U3/lGtNrkBtd8Ok9RD99B+fdQUkXCJxLNFkfZtnRfPeWb0TmfFf1aVG+XcxNBhIJDCXoOzcc3N2n9cniDM7w2xSPpbM9yEbdPFTWmEhAkmcSIOJVFUK9VBpKFDEWnmPOu2HXu67VBzeZp9qf1hDp7Cncve3wP85DOIbZC5TGB9bZu8LDRQtVo1kO45IzWXkLwL41YhkFBmxl3FaOJjPEPA/Mo13sp4lh2Pb09QRwDkxpukkOnaHhItUj/6kKURvEWGhMidv5fp/D9gxynb1uWhC/6MeNHaM9Tvm/VMPq/zi6FbJLtq9D" From eabc46f4fb117fc54caa8900cbe4ba5ae83b14f4 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 26 Mar 2020 06:59:30 -0400 Subject: [PATCH 099/356] Adding some games --- roles/shell/tasks/packages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 8a531543..4d63810a 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -76,8 +76,9 @@ - context - cowsay - devscripts + - dopewars - dos2unix -# - dosemu + - dosemu - dovecot-pop3d - dovecot-core - dovecot-imapd From 1bf054bacc3dc12af839c3b39a87ea0ec6f229e9 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 26 Mar 2020 07:29:20 -0400 Subject: [PATCH 100/356] Ok, dosemu still isn't there --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 4d63810a..d9ef8899 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -78,7 +78,7 @@ - devscripts - dopewars - dos2unix - - dosemu +# - dosemu - dovecot-pop3d - dovecot-core - dovecot-imapd From cf029ba651378eb28b378e8caef89a7f2bce4cf7 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:14:08 -0400 Subject: [PATCH 101/356] Adding user greek --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/greek.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/greek.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6761503e..56065240 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -194,3 +194,4 @@ - include: users/realvindic.yml - include: users/ramos.yml - include: users/sem.yml +- include: users/greek.yml diff --git a/roles/shell/tasks/users/greek.yml b/roles/shell/tasks/users/greek.yml new file mode 100644 index 00000000..66eff307 --- /dev/null +++ b/roles/shell/tasks/users/greek.yml @@ -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: "ed25519-key-20200329 AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy" From 05e309a5800f398fff464218ee0aeb56beda4583 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:15:28 -0400 Subject: [PATCH 102/356] Adding user tawi --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/tawi.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/tawi.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 56065240..373f8eb8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -195,3 +195,4 @@ - include: users/ramos.yml - include: users/sem.yml - include: users/greek.yml +- include: users/tawi.yml diff --git a/roles/shell/tasks/users/tawi.yml b/roles/shell/tasks/users/tawi.yml new file mode 100644 index 00000000..aa8dc9a5 --- /dev/null +++ b/roles/shell/tasks/users/tawi.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up tawi + user: + name: tawi + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/tawi +- authorized_key: + user: tawi + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDoUsY8SHxDi7jf/DKGZHg/U1DOD+MC+47U3/lGtNrkBtd8Ok9RD99B+fdQUkXCJxLNFkfZtnRfPeWb0TmfFf1aVG+XcxNBhIJDCXoOzcc3N2n9cniDM7w2xSPpbM9yEbdPFTWmEhAkmcSIOJVFUK9VBpKFDEWnmPOu2HXu67VBzeZp9qf1hDp7Cncve3wP85DOIbZC5TGB9bZu8LDRQtVo1kO45IzWXkLwL41YhkFBmxl3FaOJjPEPA/Mo13sp4lh2Pb09QRwDkxpukkOnaHhItUj/6kKURvEWGhMidv5fp/D9gxynb1uWhC/6MeNHaM9Tvm/VMPq/zi6FbJLtq9D" From 237d9049d14a3d7394ca1fc8cf3a06ce3216a9b0 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:16:18 -0400 Subject: [PATCH 103/356] Adding user pluto --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/pluto.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/pluto.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 373f8eb8..74097136 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -196,3 +196,4 @@ - include: users/sem.yml - include: users/greek.yml - include: users/tawi.yml +- include: users/pluto.yml diff --git a/roles/shell/tasks/users/pluto.yml b/roles/shell/tasks/users/pluto.yml new file mode 100644 index 00000000..a78871fd --- /dev/null +++ b/roles/shell/tasks/users/pluto.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up pluto + user: + name: pluto + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/pluto +- authorized_key: + user: pluto + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlT1uDNjt488P6JaLDT00offop0f5MUco9PBdBz2+bCze9e+dQdBFYXNApf9N99Y5SnvXKEeZuiaHlK4D76A3fFCDIjv7rcyPUdRlNgrgJBI3iLDQG5n4Q8+dph+JZy4GVDsXRJWVHwXMpiTdZX4Z0aJGTCS+oMn7UBKx2ogWw+/wbesSPTkJtWf2aqY+rYpYG2BPwS6EEifOmj80tsedFkUO17JKMS/pm/+Aq+AEkEML3JJfWhvASpLpaNlhdpcgabXoxu8EVopdb1F8tjd7Nz9BOY6tXGmbCgYHDJ49JYt07peq61i5Nwi42kobG51hrEQ+MMorR7DLjTVTsPuVxQ==" From f346e18ca37a361c264163f73a937b376aa86b41 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:17:23 -0400 Subject: [PATCH 104/356] Adding user sy --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sy.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sy.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 74097136..8ef7ce7e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -197,3 +197,4 @@ - include: users/greek.yml - include: users/tawi.yml - include: users/pluto.yml +- include: users/sy.yml diff --git a/roles/shell/tasks/users/sy.yml b/roles/shell/tasks/users/sy.yml new file mode 100644 index 00000000..be3a3909 --- /dev/null +++ b/roles/shell/tasks/users/sy.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sy + user: + name: sy + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sy +- authorized_key: + user: sy + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDdJ6qaMp5TaueKn0Bni52IVwSW47QA5VS6m7s6YKSd2mV5iTw3SHQL0JX5uRbLqESdILjmb4cFsDRkXTHzs7jK/CAsMu0Qyg9n4daAVrBEfi+BztYZ/bfN/mQlmW4jB7tM201wAfoPi13AXjbii+FlvfinWqBcRcORw7zJLDp8RkiBot/Fdaq6M0PFY8xOHHAI2U5eksCrWpuAg0WmQ0zdNymgo+IVvxN1yG+u0yriPKeoNvMYAnTh88857gA9E0ZR3Y/iuC7ic5WIWB8imuXVTCHGCKlLl6K5oaVUHNqFtXZlKGwsMcxAvU+eIiu8PPh7VogOLO+CAd0Fum8Pt4TDeS+x9iOq1e/P4MkLIMONXtWPQ6SYuvzKU8DKXfjzR3BrLXcs/FqdFxrA3QhD/OFvYY/l3UE+MuII6jtjf4qEhM5zzCt/dS9X8GBBGlnI195h30bo9OE4XQnrZAg+njkPcIvhx7VMn3E97GQnnA2e9rGY2I6hGyc9k+Mf70WrfYgwTAoDZjm8l9DBJevbb1R9IvP6i3IwrYiYomBA9bxa58FMk84GAVbXuQRj7Zp1DnTWopdhZ+8wjX4pAmjQ5tKYnxh+kKqShTY9RnIOLZf/BjxYaZcwsNfeTiGZLegBY8f/T6g0nPx2hOntDe73/heaZTmAL2ZLfSqzxT4l0dterw==" From 190f6526e67ac8e2cfc3203f6a1698de4bf81420 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:18:22 -0400 Subject: [PATCH 105/356] Adding user roygbiv --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/roygbiv.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/roygbiv.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8ef7ce7e..4295bbcc 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -198,3 +198,4 @@ - include: users/tawi.yml - include: users/pluto.yml - include: users/sy.yml +- include: users/roygbiv.yml diff --git a/roles/shell/tasks/users/roygbiv.yml b/roles/shell/tasks/users/roygbiv.yml new file mode 100644 index 00000000..8242fbd2 --- /dev/null +++ b/roles/shell/tasks/users/roygbiv.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up roygbiv + user: + name: roygbiv + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/roygbiv +- authorized_key: + user: roygbiv + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCgCrD7ZRvCFFa1iwThTWeGzNBAGWGtbmbYDKVx4laj78TtCk1sfjcPnDUmAYTBoFClK4Cf8chDma2QSr0nY4gefkXqnQcQzqrcjEtMQpiHr6eMh6a7vavaOe3DUlMAlf429Sf+0FfH0zMUdwHEOaFxZcrqvwRygCEx7kQGMXtfWHlQJ6E2pwSkbaO9fPBAx30gAmHwwNM3cQbUKVdeY5z7rUN88MVctWLIw2uNwTtYHtRINa7f0skM2pkrq9+81JUKLzhLmzBk2zQJa7u/Xq7otrGAnEwrQ/xziKwUYUr03XxMGu4r88J2+P4DHGzuKMKr3JjFh4ORH4n22j7qT4m/" From dd88cb1e49d5436fdc0b42a2dd0a597239950466 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:25:04 -0400 Subject: [PATCH 106/356] Fix key --- roles/shell/tasks/users/greek.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/greek.yml b/roles/shell/tasks/users/greek.yml index 66eff307..3808f207 100644 --- a/roles/shell/tasks/users/greek.yml +++ b/roles/shell/tasks/users/greek.yml @@ -12,4 +12,4 @@ - authorized_key: user: greek state: present - key: "ed25519-key-20200329 AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy" + key: "ssh-ecdsa AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy" From 22648b105c50bfa241932b83bdbfa6082f8a5658 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 30 Mar 2020 12:31:25 -0400 Subject: [PATCH 107/356] Ok, one more try --- roles/shell/tasks/users/greek.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/greek.yml b/roles/shell/tasks/users/greek.yml index 3808f207..43870434 100644 --- a/roles/shell/tasks/users/greek.yml +++ b/roles/shell/tasks/users/greek.yml @@ -12,4 +12,4 @@ - authorized_key: user: greek state: present - key: "ssh-ecdsa AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy" + key: "ecdsa-sha2-nistp256 AAAAC3NzaC1lZDI1NTE5AAAAIDtsATgz5Fehd3BJXDKu+Ca/CWgVckYRNIOcbU1lUloy" From 53dcb9fd50139ba1f545847f1138ea13aaab6321 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 3 Apr 2020 09:16:45 -0400 Subject: [PATCH 108/356] Re-enabling marc --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4295bbcc..5744306f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -100,7 +100,7 @@ #- include: users/makassar.yml #- include: users/makmur.yml #- include: users/mandelbroth.yml -#- include: users/marc.yml +- include: users/marc.yml #- include: users/mks.yml - include: users/ml.yml #- include: users/mom.yml From e9b9e31af1986cb5f17008bd8d9f2804a425b09d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 3 Apr 2020 11:21:42 -0400 Subject: [PATCH 109/356] Adding user neotux --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/neotux.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/neotux.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5744306f..702df16e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -199,3 +199,4 @@ - include: users/pluto.yml - include: users/sy.yml - include: users/roygbiv.yml +- include: users/neotux.yml diff --git a/roles/shell/tasks/users/neotux.yml b/roles/shell/tasks/users/neotux.yml new file mode 100644 index 00000000..81ce521a --- /dev/null +++ b/roles/shell/tasks/users/neotux.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up neotux + user: + name: neotux + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/neotux +- authorized_key: + user: neotux + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBWFMHqGFVn7JesxDIbpEBpV5FfNCbpHfqO5kqEdLvwR neotux" From e60af8d8c740f1b65f7876cedb159cbb7f32a1dd Mon Sep 17 00:00:00 2001 From: mspe Date: Fri, 3 Apr 2020 18:17:22 +0200 Subject: [PATCH 110/356] Updating key for user mspe --- roles/shell/tasks/users/mspe.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/mspe.yml b/roles/shell/tasks/users/mspe.yml index 02ea0a59..0dcee53e 100644 --- a/roles/shell/tasks/users/mspe.yml +++ b/roles/shell/tasks/users/mspe.yml @@ -12,4 +12,4 @@ - authorized_key: user: mspe state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDEcJyDhUcAavq+iuDXDzqyxLsRyaLxHlr8SEUp1EEk8uw/lFb3KPFPNQ+OAUwCRYDox6u+qI271Cukxm9VtzNRN/g3vKFgV27WgaxJHhb0kjzed53b9iDak9iIaQZO3mkNQYIzuto2jZpK1gjyztF3WkP1GvJngu9U+7UD01fj79BYXek8EA6lEKaOgdslRLn+j5LKKWo3DgOk5QMXcFqelG/OzwvVVdb6pbO3Akr0H/CKb0euJzOtJWCM5vUweT8hyDbOIFhQihJy6oipXIhSClTviPOnKjyo8nJscEbVKDbRdGsArMtukjTx2EfpQdKrhwjpFTLoLvehcK4smpek5vTtVR3RCczLlRgvdvaC7QxYiJJ+Jdem9W57UbC9XtHX3BrvwfrzJ8U6rfKk6qdG2CnKy1AwsMdXRU8aF+esv1XI6n4saxQXH5ntZH8gfpuILP3Zs7cdVdJePDfhuUtOUGiYV+bZ09zZdfiOrCAO1hd9LXQbxEJWW5rGvi2yOfGLBAe7zzQY1PHiqOMa8vcf/vnF4K7zRtNaDhOOMkZ1zKGt/FYRvcG6ar0xZX9eQIwZeNOISPL9ijGPmrR/g3hJOd/Pak9h22s7l1mnQ+2Q/UGm/7EqDl06pL3JP/vpMRTldywlwyE3V/PC/U796+DZm+vkiBOgu0svi/zg5W/zkw==" + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICZAs76kQJ0/Et2NGzhxurK2wE0VhYsG9wl85iCmR9xH" From 45896acd62bbb9b240d0817e40fd256df10cc03e Mon Sep 17 00:00:00 2001 From: mspe Date: Fri, 3 Apr 2020 18:17:33 +0200 Subject: [PATCH 111/356] Updating key for user marc --- roles/shell/tasks/users/marc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/marc.yml b/roles/shell/tasks/users/marc.yml index 4826460b..24a73873 100644 --- a/roles/shell/tasks/users/marc.yml +++ b/roles/shell/tasks/users/marc.yml @@ -12,4 +12,4 @@ - authorized_key: user: marc state: present - key: "ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAAAIbmlzdHA1MjEAAACFBAFBp8vFUIRu4Bq8EvnCGwlp71GQ4wGT5wKdY1X/c9AfYjsn/pnBNgnfNFxPxoNasG1MXeXjutSLtlXqnsWx2NQpFQC321MeUvd3Z/DCeIvS4WvpOZMyBvVUd2sTsuuCRVuH3fbJF5XPJrFzH3nEFNtcW7lmN+F6nKLB0kYahc3+gyTH+g==" + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICZAs76kQJ0/Et2NGzhxurK2wE0VhYsG9wl85iCmR9xH" From 17c5ee04e400e6b5ad6becac0107176ab97a4b0b Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 6 Apr 2020 06:42:17 -0400 Subject: [PATCH 112/356] Adding user n0a110w --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/n0a110w.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/n0a110w.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 702df16e..b2422e2f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -200,3 +200,4 @@ - include: users/sy.yml - include: users/roygbiv.yml - include: users/neotux.yml +- include: users/n0a110w.yml diff --git a/roles/shell/tasks/users/n0a110w.yml b/roles/shell/tasks/users/n0a110w.yml new file mode 100644 index 00000000..6820ca1a --- /dev/null +++ b/roles/shell/tasks/users/n0a110w.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up n0a110w + user: + name: n0a110w + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/n0a110w +- authorized_key: + user: n0a110w + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDrQ8BbykGnaowGwEfXh5LCxTXHU9DC7jr/nCf5jONVo" From aa82558b83ea91e68441b1c42ef3d7f64b42f023 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 6 Apr 2020 06:43:30 -0400 Subject: [PATCH 113/356] Adding user stern --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/stern.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/stern.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index b2422e2f..fc229516 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -201,3 +201,4 @@ - include: users/roygbiv.yml - include: users/neotux.yml - include: users/n0a110w.yml +- include: users/stern.yml diff --git a/roles/shell/tasks/users/stern.yml b/roles/shell/tasks/users/stern.yml new file mode 100644 index 00000000..f4510b11 --- /dev/null +++ b/roles/shell/tasks/users/stern.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up stern + user: + name: stern + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/stern +- authorized_key: + user: stern + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCzwOtj80asZElWTNgYYxrSVBzLt44Lg2rZeozPx33o0tsQlf4lyKhNiRvRzlxv7mOLBGuSzbt49uKnYHiKiHO1v1iNO8+t0MJZOMPgrZY/+DB6bMg357ZyhXWquMgQx6LjjmQrAaVDjP0cg7BI6zjBbzepSAZbpHC666HRAWNiSLbXS0ukOHex2a+Hcq4UK1zbf7yJrF6xATF/JINuItxBPdL5pZvsRzmT+woNN0T+G6q6NgOQ+q30O91oWx+RkTbIkQF3uGyIIiaFQRB8oJ8cTggwRrFiJujBByClhw0MGKLFDNfCY9ecYwKj479t5/qQsWDfnkCGRFbxeLo1RqNoZ4I+ZVQVdlADY00Jp3rwfZ7MXYepcSHj74x85FXcIaIENhpBj2nG0Htfp5JplFIqU7cr/qSDMIvXaOLlUo/8yPZsFNVFDMjTQgQvJrQjkhunk94drED9YHr3O/eFS2bJxcGd5EamCYOAH3Ija62xilJdh+Eh0dJVXXkSkExSUnk=" From 1749a672fb5a7dcb33cb1938db861d5e22e598d0 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 6 Apr 2020 06:44:29 -0400 Subject: [PATCH 114/356] Adding user cypher --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cypher.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cypher.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index fc229516..fbdb3ebb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -202,3 +202,4 @@ - include: users/neotux.yml - include: users/n0a110w.yml - include: users/stern.yml +- include: users/cypher.yml diff --git a/roles/shell/tasks/users/cypher.yml b/roles/shell/tasks/users/cypher.yml new file mode 100644 index 00000000..e24458e1 --- /dev/null +++ b/roles/shell/tasks/users/cypher.yml @@ -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" From e3d383f6de1ae6c1ad0d38a889a2e8113d584246 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Apr 2020 21:35:06 +0200 Subject: [PATCH 115/356] Adding user pkuz --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/pkuz.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/pkuz.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index fbdb3ebb..c138705c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -203,3 +203,4 @@ - include: users/n0a110w.yml - include: users/stern.yml - include: users/cypher.yml +- include: users/pkuz.yml diff --git a/roles/shell/tasks/users/pkuz.yml b/roles/shell/tasks/users/pkuz.yml new file mode 100644 index 00000000..833b47a3 --- /dev/null +++ b/roles/shell/tasks/users/pkuz.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up pkuz + user: + name: pkuz + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/pkuz +- authorized_key: + user: pkuz + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOXXF1Jz8yCFEIjEh33cq6JppcKW1/LiM1oUPUBWxhOg6uRsROQy9PrelUe3lcWhRDopuhIhTs8BU89ZQ/dQ2KmIjbWBo8jSaMLQGrFYdr3RuAiGKqWuKzy/Pwvk/Xj7k9j/QYOW7EVQKenBiJrovUOlYRMFZ+G54McJuJWJLasn7gE+bstKO2z1w6J91R3AjvNSgVzhmXQwLefUSwwp/rrf9luClW0oCWPTymbqZzdrQ0gdfwfR6OxxjxNgkGRjduQkKEohrRvrE3aD5gbtC46qfHsian6VeBCOc+QrA2nTWuCf1eqWulFzvWuFyjmPo0jIeqt8EqWHTJQ23za4R3 pkuz" From 98d9382731b97744498df9da5609e505e4fb9f5c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 11 Apr 2020 19:31:40 -0400 Subject: [PATCH 116/356] Temp setting of resolvers --- roles/common/files/resolv.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/common/files/resolv.conf b/roles/common/files/resolv.conf index d1cdbc0a..e5c1a560 100644 --- a/roles/common/files/resolv.conf +++ b/roles/common/files/resolv.conf @@ -1,2 +1,3 @@ -nameserver 127.0.0.1 -nameserver 149.56.184.112 +#nameserver 127.0.0.1 +#nameserver 149.56.184.112 +nameserver 8.8.8.8 From 3b538cf566510fae6e0c22f351a40c2e3db79658 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 12 Apr 2020 22:58:40 +0200 Subject: [PATCH 117/356] Adding user h3rz --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/h3rz.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/h3rz.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c138705c..09ea219a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -204,3 +204,4 @@ - include: users/stern.yml - include: users/cypher.yml - include: users/pkuz.yml +- include: users/h3rz.yml diff --git a/roles/shell/tasks/users/h3rz.yml b/roles/shell/tasks/users/h3rz.yml new file mode 100644 index 00000000..d4ef16ad --- /dev/null +++ b/roles/shell/tasks/users/h3rz.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up h3rz + user: + name: h3rz + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/h3rz +- authorized_key: + user: h3rz + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDULB6qQeB6V6SlozjDSm+MvLPuOrnBkfHhZ3h6Y7W8w8vZpbmHViqaU2pTEGbQDM13HLC2OFtJXw7Mce43x1NMCkJj4zXpL8DjBXNnFk4HQ1wWUlpUKcdd4Dxo1FWsvi4VY9Ob4dvSk+rmDvhcT2rd4XOlgMokH/R9NEpBzOIyum0FybNU5FGQW17Jsyi1cO6zS6HoKejRzZ27UUK/uJLYzZDjtMv8axxRXUAwOtiZNmJSTFzKctNjQYb8j2rvlmK2MsBiqE694zvRFeX2coLvBBhnTyyWdGYuMD/peovGPBbi6yHlAhSx+qiqKo+XbKPW7GdK6DUt2FG8wQmn2+OV usuario@Herzogs" From f3b96fe9e55568a98ce25f55eec3b666be59b943 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 13 Apr 2020 13:30:33 -0400 Subject: [PATCH 118/356] Fixed bind issues --- roles/common/files/resolv.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/common/files/resolv.conf b/roles/common/files/resolv.conf index e5c1a560..704937be 100644 --- a/roles/common/files/resolv.conf +++ b/roles/common/files/resolv.conf @@ -1,3 +1,3 @@ -#nameserver 127.0.0.1 -#nameserver 149.56.184.112 -nameserver 8.8.8.8 +nameserver 127.0.0.1 +nameserver 149.56.184.112 +#nameserver 8.8.8.8 From c08557eede22c2780503a3866211db7ff78e7731 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 17 Apr 2020 11:24:15 -0400 Subject: [PATCH 119/356] Adding user gjeu --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gjeu.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gjeu.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 09ea219a..266114eb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -205,3 +205,4 @@ - include: users/cypher.yml - include: users/pkuz.yml - include: users/h3rz.yml +- include: users/gjeu.yml diff --git a/roles/shell/tasks/users/gjeu.yml b/roles/shell/tasks/users/gjeu.yml new file mode 100644 index 00000000..3ac8205e --- /dev/null +++ b/roles/shell/tasks/users/gjeu.yml @@ -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" From b6d6547221d65b364e7fe6944512571a5991b7cf Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 18 Apr 2020 01:43:38 +0200 Subject: [PATCH 120/356] Adding user Iyxbaideus --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Iyxbaideus.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Iyxbaideus.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 266114eb..65cd2444 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -206,3 +206,4 @@ - include: users/pkuz.yml - include: users/h3rz.yml - include: users/gjeu.yml +- include: users/Iyxbaideus.yml diff --git a/roles/shell/tasks/users/Iyxbaideus.yml b/roles/shell/tasks/users/Iyxbaideus.yml new file mode 100644 index 00000000..e638f8bc --- /dev/null +++ b/roles/shell/tasks/users/Iyxbaideus.yml @@ -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" From c0889e48a128d8861988313985341d2dd557b2b4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 19 Apr 2020 22:51:51 +0200 Subject: [PATCH 121/356] MySQL backup added --- roles/shell/files/usr/local/bin/backup | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 778cfa64..f921e72d 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,5 +1,7 @@ #!/bin/bash +mysqldump --all-databases > /var/backups/all_databases.sql + tar -cvz \ --exclude ".nobackup" \ --exclude "nobackup" \ @@ -18,9 +20,11 @@ tar -cvz \ /var/lib/bzflag/ \ /var/spool/cron/ \ /var/spool/anacron/ \ + /var/backups/all_databases.sql \ -f /var/backups/`date +%Y%m%d`.tgz chown root:sudo /var/backups/$(date +%Y%m%d).tgz chmod 640 /var/backups/*.tgz find /var/backups -name "*.tgz" -mtime +3 -exec rm {} \; +rm /var/backups/all_databases.sql From 27541353f146e21a1b397a4691e230844ac0aab5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 20 Apr 2020 00:27:56 +0200 Subject: [PATCH 122/356] Adding user knight --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/knight.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/knight.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 65cd2444..90c4dee0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -207,3 +207,4 @@ - include: users/h3rz.yml - include: users/gjeu.yml - include: users/Iyxbaideus.yml +- include: users/knight.yml diff --git a/roles/shell/tasks/users/knight.yml b/roles/shell/tasks/users/knight.yml new file mode 100644 index 00000000..8be799b5 --- /dev/null +++ b/roles/shell/tasks/users/knight.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up knight + user: + name: knight + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/knight +- authorized_key: + user: knight + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAyLtTngxS3+MWZr9O1o97UDOMcAecFZwKFIoPUEGHYhj87ZeVim+kGqyNlOqupx4u/cCcQuqO9OfLDZTxluOZVoYHmDGkBswH9wxDIMt1oUQlrlL1ckNs0VKB33pAyUqn9q6zbXzIvhwVgJfg4zWF29TODrtdgdfGuX6JRle6Pbl823pk6ib6d+Ud74N+xqAP9LjVgkS4hm60C7/0NnAmsniuptSVgws8/h7ADxDgffSTO35omkEnBkzoWG4PsxQabcntE25R0R53cYxTsfcXiVt3Nmw5R8/5mmnrRU+/xUgs5Y8MHK1907HTd6njg2KUpp6RkovtYtmyc8pahqZp7w== rsa-key-20200419" From 147259d5ffc21407ce66e84cdd661b20c0bdba63 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Thu, 23 Apr 2020 08:41:25 +1000 Subject: [PATCH 123/356] Install python-xmpp --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index d9ef8899..5ea7f638 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -204,6 +204,7 @@ - python-pip # - python-potr - python-twisted + - python-xmpp - python3 - python3-flask - python3-pip From f0481aa26e3f1bb979283aba3bc7aa6459308c11 Mon Sep 17 00:00:00 2001 From: southerntofu Date: Thu, 23 Apr 2020 01:34:47 +0200 Subject: [PATCH 124/356] Replace unmaintained python-xmpp with a real client (primitivus) --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5ea7f638..0d30515d 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -204,7 +204,6 @@ - python-pip # - python-potr - python-twisted - - python-xmpp - python3 - python3-flask - python3-pip @@ -220,6 +219,7 @@ - ruby-paint - ruby-trollop - rustc + - sat-xmpp-primitivus - scala - scala-doc - scala-library From 1c590042fd8880c1f6934eda302ab10b0b928a1a Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 22 Apr 2020 20:13:26 -0400 Subject: [PATCH 125/356] Adding profanity (xmpp) to packages --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5ea7f638..1ad263b7 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -198,6 +198,7 @@ - pngtools - postfix-policyd-spf-python - proot + - profanity - python - python-certbot-apache - python-flask From f17eb3dbc9182b35a74c37e887d8e2acc126cd22 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 22 Apr 2020 20:26:23 -0400 Subject: [PATCH 126/356] Adding poezio --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 1ad263b7..36ac6c7b 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -197,6 +197,7 @@ - php7.3-xml - pngtools - postfix-policyd-spf-python + - poezio - proot - profanity - python From 70da3987a008b22cc681ab3410f7839eae7d82bb Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 24 Apr 2020 09:43:30 -0400 Subject: [PATCH 127/356] Removing unrequired mirrors --- roles/webserver/files/mirror-rsync-daily | 2 +- roles/webserver/files/mirror-rsync-hourly | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/webserver/files/mirror-rsync-daily b/roles/webserver/files/mirror-rsync-daily index f3b5de8b..ff123f69 100644 --- a/roles/webserver/files/mirror-rsync-daily +++ b/roles/webserver/files/mirror-rsync-daily @@ -2,6 +2,6 @@ # Mirror rsync jobs for ftp.thunix.net that run daily rsync -rvltpHS --delete-excluded rsync://ftp.halifax.rwth-aachen.de/ubuntu-releases/ /var/www/ftp.thunix.cf/ubuntu-releases -rsync -avz --delete --safe-links rsync://rsync.apache.org/apache-dist /var/www/ftp.thunix.cf/apache/ +#rsync -avz --delete --safe-links rsync://rsync.apache.org/apache-dist /var/www/ftp.thunix.cf/apache/ rsync -rlptv --delete ftp.ibiblio.org::ldp_mirror /var/ftp/tldp diff --git a/roles/webserver/files/mirror-rsync-hourly b/roles/webserver/files/mirror-rsync-hourly index dd6c733d..7f431658 100644 --- a/roles/webserver/files/mirror-rsync-hourly +++ b/roles/webserver/files/mirror-rsync-hourly @@ -1,6 +1,6 @@ #!/bin/bash # Mirror rsync jobs for ftp.thunix.net that run hourly -rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/gnu/ /var/www/ftp.thunix.cf/gnu-ftp -rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/alpha/ /var/www/ftp.thunix.cf/gnu-alpha -rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/old-gnu/ /var/www/ftp.thunix.cf/gnu-old +#rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/gnu/ /var/www/ftp.thunix.cf/gnu-ftp +#rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/alpha/ /var/www/ftp.thunix.cf/gnu-alpha +#rsync -rvltpHS --delete-excluded rsync://ftp.gnu.org/old-gnu/ /var/www/ftp.thunix.cf/gnu-old From f1e429206f8589c926cb8ab5b36fed4821b47a15 Mon Sep 17 00:00:00 2001 From: southerntofu Date: Fri, 24 Apr 2020 18:06:21 +0200 Subject: [PATCH 128/356] Give ownership of /var/www/staticadventures.netlib.re to southerntofu --- roles/webserver/tasks/apache.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index c62eb1be..05827ed5 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -48,6 +48,14 @@ src: ../files/etc/apache2/sites-available/staticadventures.netlib.re.conf dest: /etc/apache2/sites-available/staticadventures.netlib.re.conf +- name: Give permissions for staticadventures.netlib.re to southerntofu + file: + path: /var/www/staticadventures.netlib.re + state: directory + owner: southerntofu + group: southerntofu + mode: 744 + - name: Deploy apache site conf for deb.thunix.net copy: src: ../files/etc/apache2/sites-available/deb.thunix.net.conf From 373aeefdfbb38f4bc5930123914d8b35597f147f Mon Sep 17 00:00:00 2001 From: southerntofu Date: Fri, 24 Apr 2020 18:10:30 +0200 Subject: [PATCH 129/356] Woops don't forget to recurse --- roles/webserver/tasks/apache.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index 05827ed5..1c40397b 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -55,6 +55,7 @@ owner: southerntofu group: southerntofu mode: 744 + recurse: yes # Can be removed in the future, but for now all files still have old uid/gid - name: Deploy apache site conf for deb.thunix.net copy: From 20bcf3873eeebaa2b3f62fd9618622c29e90cf47 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 26 Apr 2020 23:06:54 -0400 Subject: [PATCH 130/356] Adding user wilfredex --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/wilfredex.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/wilfredex.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 90c4dee0..62468b8d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -208,3 +208,4 @@ - include: users/gjeu.yml - include: users/Iyxbaideus.yml - include: users/knight.yml +- include: users/wilfredex.yml diff --git a/roles/shell/tasks/users/wilfredex.yml b/roles/shell/tasks/users/wilfredex.yml new file mode 100644 index 00000000..e4d19dbe --- /dev/null +++ b/roles/shell/tasks/users/wilfredex.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up wilfredex + user: + name: wilfredex + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/wilfredex +- authorized_key: + user: wilfredex + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAknSULPcQMJHsP3H4vlGVr7L4iS5jeNPfym2i9ZG40U5l8fpkiKdT/2q9CnNmhuWbc6Oibf5VOuZWoLj9PsKrHMUWDUPbrJXfZFJZXPfNfIPDU/yipIi61Uy/v5NF7kNlQlWvucjiTyjE+IfSp7aYvcaVvuf0A77FMza3qtsUYifswkXublRvNsAauy9+Zo2lwSBxcyMhaKrMB0i1YFxCGoocPAWaU2yQGYWilKpH22y82LThC0ZfMQzPz1jEhIyf2FECi8PLzsnfLceucxCBgbRLQ/YHZlf6pmJ/wALn1VFxzPRHnIlKW52FFKqW++ZhLcjkPLs70thmMU7DcqlAUQ== rsa-key-20200426" From 958810971969ba01d28b62d24cd314653f37b997 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 29 Apr 2020 07:36:29 -0400 Subject: [PATCH 131/356] Adding user loki --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/loki.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/loki.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 62468b8d..499cd77f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -209,3 +209,4 @@ - include: users/Iyxbaideus.yml - include: users/knight.yml - include: users/wilfredex.yml +- include: users/loki.yml diff --git a/roles/shell/tasks/users/loki.yml b/roles/shell/tasks/users/loki.yml new file mode 100644 index 00000000..e13ea8a7 --- /dev/null +++ b/roles/shell/tasks/users/loki.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up loki + user: + name: loki + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/loki +- authorized_key: + user: loki + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAWvYEp+qRqS4FWPqGS1br2TJ+VcpBUIV5bZKWDV9m2g loki@debian" From 615990862d7a38e3f9d7dc058d2a988ac324e7ae Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 29 Apr 2020 07:39:12 -0400 Subject: [PATCH 132/356] Adding user freuddy --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/freuddy.yml | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 499cd77f..79f2f84e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -210,3 +210,4 @@ - include: users/knight.yml - include: users/wilfredex.yml - include: users/loki.yml +- include: users/freuddy.yml diff --git a/roles/shell/tasks/users/freuddy.yml b/roles/shell/tasks/users/freuddy.yml index c66de630..6a7d4d98 100644 --- a/roles/shell/tasks/users/freuddy.yml +++ b/roles/shell/tasks/users/freuddy.yml @@ -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=" From ae6db06d5357d51d0a089af1f65fec93bf961b04 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 29 Apr 2020 07:40:02 -0400 Subject: [PATCH 133/356] fix key --- roles/shell/tasks/users/freuddy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/freuddy.yml b/roles/shell/tasks/users/freuddy.yml index 6a7d4d98..0b8da9ed 100644 --- a/roles/shell/tasks/users/freuddy.yml +++ b/roles/shell/tasks/users/freuddy.yml @@ -12,4 +12,4 @@ - authorized_key: user: freuddy state: present - 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=" + 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=" From 71c821624e7c5c4f59db5d0fa9c4b35fc8795af1 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 29 Apr 2020 10:44:13 -0400 Subject: [PATCH 134/356] Pruning user --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 79f2f84e..012aac22 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -147,7 +147,7 @@ #- include: users/stereo.yml - include: users/swann.yml #- include: users/syncore.yml -- include: users/techemporium.yml +#- include: users/techemporium.yml - include: users/thekingofbandit.yml #- include: users/tomjerr.yml - include: users/transfusion.yml From ce880a1b25012ea2eb820a40a1bf9411bc63cb77 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 4 May 2020 10:54:04 +0200 Subject: [PATCH 135/356] limit outbound mail to avoid being blacklisted --- roles/shell/files/etc/postfix/main.cf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index b400b4c6..3872444b 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -78,3 +78,7 @@ milter_default_action = accept 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 From 93e53ba284f7510bd591e646d76730ef1f14a8c7 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 4 May 2020 07:47:38 -0400 Subject: [PATCH 136/356] Removed spammer --- roles/shell/tasks/users.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 012aac22..c4447b34 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -73,8 +73,8 @@ #- include: users/hexhaxtron.yml #- include: users/hijaben.yml - include: users/hitomi.yml -- include: users/info.yml -- include: users/infoTV.yml +#- include: users/info.yml +#- include: users/infoTV.yml #- include: users/init0.yml #- include: users/isaac.yml - include: users/jac98.yml From c1f0a2ebfe262345f527ff161d8eecef3a5dc2a2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 4 May 2020 20:14:53 +0200 Subject: [PATCH 137/356] making sure the repo's version is up to date --- roles/shell/files/etc/postfix/main.cf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 3872444b..7dbfb641 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -11,8 +11,8 @@ 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 @@ -76,8 +76,8 @@ 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 From 7636c5389f6e2b79d1eb830be375a6889bfcf4bd Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 4 May 2020 20:28:56 +0200 Subject: [PATCH 138/356] commented that out during the server migration --- roles/shell/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/main.yml b/roles/shell/tasks/main.yml index 7028d226..4040d3dc 100644 --- a/roles/shell/tasks/main.yml +++ b/roles/shell/tasks/main.yml @@ -10,7 +10,7 @@ - include: minetest.yml - include: minecraft.yml - include: dovecot.yml -#- include: postfix.yml +- include: postfix.yml - include: iris.yml - include: gopher.yml - include: pb.yml From 7262803e1051407dbaf7848c5cbe132e9a224124 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 5 May 2020 22:23:38 +0200 Subject: [PATCH 139/356] Adding user iloveirc --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/iloveirc.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/iloveirc.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c4447b34..c0cd0ed9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -211,3 +211,4 @@ - include: users/wilfredex.yml - include: users/loki.yml - include: users/freuddy.yml +- include: users/iloveirc.yml diff --git a/roles/shell/tasks/users/iloveirc.yml b/roles/shell/tasks/users/iloveirc.yml new file mode 100644 index 00000000..d6eb7cb3 --- /dev/null +++ b/roles/shell/tasks/users/iloveirc.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up iloveirc + user: + name: iloveirc + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/iloveirc +- authorized_key: + user: iloveirc + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAj41ggAlkXQI1ZXqo1xhBWfKFzZ8ZAkmXKjGlVGmKkLKLDm0dhK7Mq2eeRy5eJBmgnDnSM3EKaPPkYZURE3uWwdZzwPbqHRgV/HpX10GBzZB6cSzJ86mxUBzyBcfqYZazuALzvDFW31AK/RqBWc3dYmWQgEmnn8x8DI+iB6Vld73n7Eqxm7LYlYm3UpA33uYyxTueDxyPSKSHti78gd1RrjxINC8i989CiD6KDNWD/wB63/9zLRkY5mVpkm6j25OIigzi0rrJvzXg3oRc3K96L78FlFg6BlnlvhUKw4WPwNTx1Di+y1UgpWRgADhbbLnIwsGPH8UmxXyYbX577zRKtw== rsa-key-20200314" From 5a7b784adacc5dc2b013370d5897e32cc86a9722 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 5 May 2020 22:52:04 +0200 Subject: [PATCH 140/356] Adding user nirvana --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/nirvana.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/nirvana.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c0cd0ed9..f1bf60c1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -212,3 +212,4 @@ - include: users/loki.yml - include: users/freuddy.yml - include: users/iloveirc.yml +- include: users/nirvana.yml diff --git a/roles/shell/tasks/users/nirvana.yml b/roles/shell/tasks/users/nirvana.yml new file mode 100644 index 00000000..33deb40d --- /dev/null +++ b/roles/shell/tasks/users/nirvana.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up nirvana + user: + name: nirvana + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/nirvana +- authorized_key: + user: nirvana + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK0Q7/17zmwVR2qjkmj1IA6mgngptW2HlLjlzACKa/ES" From 9bd37dd3edea41f25575faffea4aab5c3855576f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 5 May 2020 23:01:39 +0200 Subject: [PATCH 141/356] Adding user resultcek --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/resultcek.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/resultcek.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f1bf60c1..253663f6 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -213,3 +213,4 @@ - include: users/freuddy.yml - include: users/iloveirc.yml - include: users/nirvana.yml +- include: users/resultcek.yml diff --git a/roles/shell/tasks/users/resultcek.yml b/roles/shell/tasks/users/resultcek.yml new file mode 100644 index 00000000..905de3a0 --- /dev/null +++ b/roles/shell/tasks/users/resultcek.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up resultcek + user: + name: resultcek + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/resultcek +- authorized_key: + user: resultcek + state: present + key: "AAAAB3NzaC1yc2EAAAADAQABAAABAQDDoUsY8SHxDi7jf/DKGZHg/U1DOD+MC+47U3/lGtNrkBtd8Ok9RD99B+fdQUkXCJxLNFkfZtnRfPeWb0TmfFf1aVG+XcxNBhIJDCXoOzcc3N2n9cniDM7w2xSPpbM9yEbdPFTWmEhAkmcSIOJVFUK9VBpKFDEWnmPOu2HXu67VBzeZp9qf1hDp7Cncve3wP85DOIbZC5TGB9bZu8LDRQtVo1kO45IzWXkLwL41YhkFBmxl3FaOJjPEPA/Mo13sp4lh2Pb09QRwDkxpukkOnaHhItUj/6kKURvEWGhMidv5fp/D9gxynb1uWhC/6MeNHaM9Tvm/VMPq/zi6FbJLtq9D" From 1036f8a96271490a24f169e0b534df9d1b43949d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 8 May 2020 11:02:28 +0200 Subject: [PATCH 142/356] Adding user rohs --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/rohs.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/rohs.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 253663f6..a67250e8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -214,3 +214,4 @@ - include: users/iloveirc.yml - include: users/nirvana.yml - include: users/resultcek.yml +- include: users/rohs.yml diff --git a/roles/shell/tasks/users/rohs.yml b/roles/shell/tasks/users/rohs.yml new file mode 100644 index 00000000..8b9962f1 --- /dev/null +++ b/roles/shell/tasks/users/rohs.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up rohs + user: + name: rohs + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/rohs +- authorized_key: + user: rohs + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAg0Hfz2Mnme824PdDYj52v423k57mBzc7AQUmHUVvYQtgOytJBTHyLMVQYEeVXbZBAyII5UHE5hzIh8N4ZlmvxlgUrXUOOmGni/smRoKH1Om34cM5pYXH9sNuKO99H/elaeIrT5VKfCvNPMOnwchF7FENxuTl/2xga72tpvl0Yhir9U+6mzPul7IKxcCzikqTS6PCphJLl9y3tH5BRb552XK+vgmAAPx4mLzceiT3IR0mCgqv0n4AfLdnHF5dlLZHTSEgDDPrc3+8Z8u5csI+1mK6SxWQtTcBXZisqpe0itEFm7woeHh7rpwdxQju7W7GifKRX7z54UEO07t1HzijWw== rsa-key-20200502" From f6f638cb9e61dee463c2f7f7dcb4c8fa58847a5e Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 8 May 2020 11:19:33 -0400 Subject: [PATCH 143/356] Adding user lukewarmcat --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lukewarmcat.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lukewarmcat.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index a67250e8..6a6dbca7 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -215,3 +215,4 @@ - include: users/nirvana.yml - include: users/resultcek.yml - include: users/rohs.yml +- include: users/lukewarmcat.yml diff --git a/roles/shell/tasks/users/lukewarmcat.yml b/roles/shell/tasks/users/lukewarmcat.yml new file mode 100644 index 00000000..07e1ab4c --- /dev/null +++ b/roles/shell/tasks/users/lukewarmcat.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lukewarmcat + user: + name: lukewarmcat + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lukewarmcat +- authorized_key: + user: lukewarmcat + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDMlsqvPl5k00TDzxWtVj8EQhikgyThZEXr+ZG/9uIdoQVg+bOTKS6eFZ2vjJ9NKewloYuNULdXPi1bQJecLNd4skzu1COrIBdGqZiSnnpMvQvzGA6xyLeW3x7vvrm8V3ipHIhap/bI0oteIqDRHEBNJgkMtK46kLuIifkQETgkUnf4qMVl5EfDfVGms1IrJmuteTrAintXmEk93xOC4qQrccM5Tc8WvdkeEWdZLrKN6V1vi0tN1RdJwCXKyKHBeEbyrHFvHcCWixc/OS+2j2g2ZD+0rhqa+O5GuSjwovrc0ZSpjq7jwRfHKc+DxDQYKC8QbFjjG0DOiYOha476iFx5iP5Hu8ycZ3kN9hh5Tz61e23rUKeDE7twLOB5110y200IlVpSAHojjMHZ/GAmy1dh2HHR53oSZDtB6jTRK+bEut6twLd4f7OkxK/8VkEZYrX9PyYgIDGAYqPCAbaR+efRsEgnblFCNB9pC9iusA4GFHk68+xESoaLfuxvdxpLlA9zIr70ycDFMQKGVPU1DNo09JxU8fGsbpCaiGaO7A9NWw1sw0tF33L9FTjDs3DOR4OcDf39uUl0HMdVdr+Vx+76mRPbUqJ9Ds92IeZ+qapyhHMPUEUDXGWugOfKer4iHe7+YJgGXeG1BFX8DxpOkJ4C8EDFKp9yLY8R6iXc2H+X6w== Adrians@DIEVS" From 05985e6be8a51d3a2af5c18c076aa36e9364171d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 8 May 2020 11:38:14 -0400 Subject: [PATCH 144/356] Fixing a key --- roles/shell/tasks/users/resultcek.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/resultcek.yml b/roles/shell/tasks/users/resultcek.yml index 905de3a0..e80533f1 100644 --- a/roles/shell/tasks/users/resultcek.yml +++ b/roles/shell/tasks/users/resultcek.yml @@ -12,4 +12,4 @@ - authorized_key: user: resultcek state: present - key: "AAAAB3NzaC1yc2EAAAADAQABAAABAQDDoUsY8SHxDi7jf/DKGZHg/U1DOD+MC+47U3/lGtNrkBtd8Ok9RD99B+fdQUkXCJxLNFkfZtnRfPeWb0TmfFf1aVG+XcxNBhIJDCXoOzcc3N2n9cniDM7w2xSPpbM9yEbdPFTWmEhAkmcSIOJVFUK9VBpKFDEWnmPOu2HXu67VBzeZp9qf1hDp7Cncve3wP85DOIbZC5TGB9bZu8LDRQtVo1kO45IzWXkLwL41YhkFBmxl3FaOJjPEPA/Mo13sp4lh2Pb09QRwDkxpukkOnaHhItUj/6kKURvEWGhMidv5fp/D9gxynb1uWhC/6MeNHaM9Tvm/VMPq/zi6FbJLtq9D" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDDoUsY8SHxDi7jf/DKGZHg/U1DOD+MC+47U3/lGtNrkBtd8Ok9RD99B+fdQUkXCJxLNFkfZtnRfPeWb0TmfFf1aVG+XcxNBhIJDCXoOzcc3N2n9cniDM7w2xSPpbM9yEbdPFTWmEhAkmcSIOJVFUK9VBpKFDEWnmPOu2HXu67VBzeZp9qf1hDp7Cncve3wP85DOIbZC5TGB9bZu8LDRQtVo1kO45IzWXkLwL41YhkFBmxl3FaOJjPEPA/Mo13sp4lh2Pb09QRwDkxpukkOnaHhItUj/6kKURvEWGhMidv5fp/D9gxynb1uWhC/6MeNHaM9Tvm/VMPq/zi6FbJLtq9D" From 5a9c1e05ecaebc10e74aa9544eae9a27ca9a047e Mon Sep 17 00:00:00 2001 From: lukewarmcat Date: Fri, 8 May 2020 12:37:55 -0400 Subject: [PATCH 145/356] lukewarmcat.codes.conf Adding my own website. --- .../apache2/sites-available/lukewarmcat.codes.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes.conf diff --git a/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes.conf b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes.conf new file mode 100644 index 00000000..bdba5bf6 --- /dev/null +++ b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes.conf @@ -0,0 +1,11 @@ + + ServerAdmin lukewarmcat@riseup.net + ServerName lukewarmcat.codes + DocumentRoot /home/lukewarmcat/public_html + ErrorLog ${APACHE_LOG_DIR}/error.log + CustomLog ${APACHE_LOG_DIR}/access.log combined + + Order deny,allow + Deny from all + + \ No newline at end of file From 03cd82fd681d49c0b530975e335a8ffea7a95116 Mon Sep 17 00:00:00 2001 From: lukewarmcat Date: Fri, 8 May 2020 12:55:03 -0400 Subject: [PATCH 146/356] Adding depolyment of my config. Config. --- roles/webserver/tasks/apache.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index 1c40397b..f11bd2db 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -77,6 +77,11 @@ src: ../files/etc/apache2/sites-available/wiki.thunix.net.conf dest: /etc/apache2/sites-available/wiki.thunix.net.conf +- name: Deploy apache site conf for lukewarmcat.codes + copy: + src: ../files/etc/apache2/sites-available/lukewarmcat.codes.conf + dest: /etc/apache2/sites-available/lukewarmcat.codes.conf + - name: Deploy apache site conf for mightywcms.thunix.net copy: src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf From ed0c13c6462cc1b807c23811a8e0cca6182c7efc Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 10 May 2020 13:09:20 +0200 Subject: [PATCH 147/356] Adding user lickthecheese --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lickthecheese.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lickthecheese.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6a6dbca7..4f4808ca 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -216,3 +216,4 @@ - include: users/resultcek.yml - include: users/rohs.yml - include: users/lukewarmcat.yml +- include: users/lickthecheese.yml diff --git a/roles/shell/tasks/users/lickthecheese.yml b/roles/shell/tasks/users/lickthecheese.yml new file mode 100644 index 00000000..f3638a2f --- /dev/null +++ b/roles/shell/tasks/users/lickthecheese.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lickthecheese + user: + name: lickthecheese + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lickthecheese +- authorized_key: + user: lickthecheese + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGWrzyntW1bgfQ10SBIOMR0ZBkLVtBL1OAGzC2nmUGds ltc@cbarchbtw" From 1c0283e639177645d56a4d1e69efbd046fb12d1e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 11 May 2020 08:22:53 +0200 Subject: [PATCH 148/356] Adding user faabb --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/faabb.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/faabb.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4f4808ca..8adc0f9a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -217,3 +217,4 @@ - include: users/rohs.yml - include: users/lukewarmcat.yml - include: users/lickthecheese.yml +- include: users/faabb.yml diff --git a/roles/shell/tasks/users/faabb.yml b/roles/shell/tasks/users/faabb.yml new file mode 100644 index 00000000..7883aad5 --- /dev/null +++ b/roles/shell/tasks/users/faabb.yml @@ -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: "sh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBf2nLLUC99OmVFgU3veTZORYs1oa4FJ2Mmhoa3FoM9ij/rGzGBjEpEwB75o5v2T1N9hHy56VS5yZ1ITpIIx4wNN1VUfYTho1yIaiIZTi3+K7yTte7npj5uB/Fs411H3uXGnh9b1e0g0flfxTEZAjJJQy/ZDh1lCIqcseMf2m4Qyim2A8O7/J39CcpSQtMWbxHRc1P4aHM3GfCACCjVvGjSjcKutsP8QJGy0AR8/sXAqvaetIfeCBCBTUCZc3kMuQTG3nYzvpzE3bE6jhqrWGELVp8aznJdiU//Lvo5fURRCwEhNfDyLG6ZOtgK30heWi17tBQKqhCZ0ljA0y9hvAd too" From 97d5ee1f8884d10e9a6b1e5312cbbbae2f3b36d8 Mon Sep 17 00:00:00 2001 From: LickTheCheese Date: Tue, 12 May 2020 17:43:11 -0400 Subject: [PATCH 149/356] install cmark --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 9cefe492..1a5fae15 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -73,6 +73,7 @@ - ca-certificates-mono - caca-utils - cmake + - cmark - context - cowsay - devscripts From 4ddc062d1425d03cba321758fab859afe660a569 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 12 May 2020 21:49:40 -0400 Subject: [PATCH 150/356] Fixed key for faabb --- roles/shell/tasks/users/faabb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/faabb.yml b/roles/shell/tasks/users/faabb.yml index 7883aad5..f034d405 100644 --- a/roles/shell/tasks/users/faabb.yml +++ b/roles/shell/tasks/users/faabb.yml @@ -12,4 +12,4 @@ - authorized_key: user: faabb state: present - key: "sh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBf2nLLUC99OmVFgU3veTZORYs1oa4FJ2Mmhoa3FoM9ij/rGzGBjEpEwB75o5v2T1N9hHy56VS5yZ1ITpIIx4wNN1VUfYTho1yIaiIZTi3+K7yTte7npj5uB/Fs411H3uXGnh9b1e0g0flfxTEZAjJJQy/ZDh1lCIqcseMf2m4Qyim2A8O7/J39CcpSQtMWbxHRc1P4aHM3GfCACCjVvGjSjcKutsP8QJGy0AR8/sXAqvaetIfeCBCBTUCZc3kMuQTG3nYzvpzE3bE6jhqrWGELVp8aznJdiU//Lvo5fURRCwEhNfDyLG6ZOtgK30heWi17tBQKqhCZ0ljA0y9hvAd too" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBf2nLLUC99OmVFgU3veTZORYs1oa4FJ2Mmhoa3FoM9ij/rGzGBjEpEwB75o5v2T1N9hHy56VS5yZ1ITpIIx4wNN1VUfYTho1yIaiIZTi3+K7yTte7npj5uB/Fs411H3uXGnh9b1e0g0flfxTEZAjJJQy/ZDh1lCIqcseMf2m4Qyim2A8O7/J39CcpSQtMWbxHRc1P4aHM3GfCACCjVvGjSjcKutsP8QJGy0AR8/sXAqvaetIfeCBCBTUCZc3kMuQTG3nYzvpzE3bE6jhqrWGELVp8aznJdiU//Lvo5fURRCwEhNfDyLG6ZOtgK30heWi17tBQKqhCZ0ljA0y9hvAd too" From 04acbd71605da70dddfca99e4dc9e153c6bca55b Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 13 May 2020 11:21:46 +0200 Subject: [PATCH 151/356] Adding user gfunkmonk --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gfunkmonk.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gfunkmonk.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8adc0f9a..4ec4ad9e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -218,3 +218,4 @@ - include: users/lukewarmcat.yml - include: users/lickthecheese.yml - include: users/faabb.yml +- include: users/gfunkmonk.yml diff --git a/roles/shell/tasks/users/gfunkmonk.yml b/roles/shell/tasks/users/gfunkmonk.yml new file mode 100644 index 00000000..776e163c --- /dev/null +++ b/roles/shell/tasks/users/gfunkmonk.yml @@ -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-dss AAAAB3NzaC1kc3MAAACBAMyXdTj6AnP9EflMDxLPlFN/6vu4NA43TWBI3+PSJJ4GXMXLsasEpeCmy4BywR07EmfwyOs0FIJrzQu/Ag5uvAs0txx4WpXGSLJ7HJx6SHre0Uw4SRRaeREkLmHbyTX4mbSVwDZfywjbWGTQQBnJwIVy3qo+VwWAWkyQE3fPk14VAAAAFQDbIbdZPFVCoS8+FJv9U0SvMT+82QAAAIALhR1yz7QQpFxvEnKIZy8jksb0j4A6BxaDsG8HCaeczviTe38cJEL8HLc4Rv8eu+c/OVaavwcb/PBn0KuZHcm1jpqQMdw0dN4I12g01EfHbGAlzfuf/mHHkJTSzK4UfAK4EJ0qVmiKUEt52VcfXtTAAKW+KfPtrvxw65WxMpPLYQAAAIBBg3lviZpDsHYoPcfdYcbtCrs28Jg/75ia+VoQcdQ8+CG/hnpYrjFONGeHx8yjQJHEQefy+lltaIKQyRpAJ2GZ/66bhEcdaXZxzxUEiI7PfwHwGPQg6GiwF79pY2XSjBs1Ga3kkCqH8polX7eCLEn+76PqLm1P9ecRB54yjaDMQg== gfunkmonk@gfunkmonk-HP-Pavilion-17-Notebook-PC" From 18961c11d6f751c1f42239172f880ab5ac2a2f9c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 13 May 2020 21:21:53 -0400 Subject: [PATCH 152/356] fixed key for gfunkmonk --- roles/shell/tasks/users/gfunkmonk.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/gfunkmonk.yml b/roles/shell/tasks/users/gfunkmonk.yml index 776e163c..e7f7472f 100644 --- a/roles/shell/tasks/users/gfunkmonk.yml +++ b/roles/shell/tasks/users/gfunkmonk.yml @@ -12,4 +12,4 @@ - authorized_key: user: gfunkmonk state: present - key: "ssh-dss AAAAB3NzaC1kc3MAAACBAMyXdTj6AnP9EflMDxLPlFN/6vu4NA43TWBI3+PSJJ4GXMXLsasEpeCmy4BywR07EmfwyOs0FIJrzQu/Ag5uvAs0txx4WpXGSLJ7HJx6SHre0Uw4SRRaeREkLmHbyTX4mbSVwDZfywjbWGTQQBnJwIVy3qo+VwWAWkyQE3fPk14VAAAAFQDbIbdZPFVCoS8+FJv9U0SvMT+82QAAAIALhR1yz7QQpFxvEnKIZy8jksb0j4A6BxaDsG8HCaeczviTe38cJEL8HLc4Rv8eu+c/OVaavwcb/PBn0KuZHcm1jpqQMdw0dN4I12g01EfHbGAlzfuf/mHHkJTSzK4UfAK4EJ0qVmiKUEt52VcfXtTAAKW+KfPtrvxw65WxMpPLYQAAAIBBg3lviZpDsHYoPcfdYcbtCrs28Jg/75ia+VoQcdQ8+CG/hnpYrjFONGeHx8yjQJHEQefy+lltaIKQyRpAJ2GZ/66bhEcdaXZxzxUEiI7PfwHwGPQg6GiwF79pY2XSjBs1Ga3kkCqH8polX7eCLEn+76PqLm1P9ecRB54yjaDMQg== gfunkmonk@gfunkmonk-HP-Pavilion-17-Notebook-PC" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDuF9ehi6aGGjBPwiXpQsjlp4U490Tc771PoJG1RLJWSTfVxEkXtdNbqglJk9fKCrS+8l1cidSEQdgIxhbnB8uSTdKWtzi/hBCVazdmX8AINmzZ79Fn5ENMZCBApvLLZIOugsYbDisiUa0jBNybbwtEasfzf4o/shdtC9zN3FEzxDBp5xcBqR9tPvfwCyqmjVwHARSK2NnVOrih3muHOuYTb35r5JbyvezJpiSCFn64ne9w1Mo5Vdv6DXxjafZfsamSjsg+vDwSfWiF3YvInKf1hAF2QbIfeWV5dRw7HLGA7eRmb+Yy6r9P9sGk37EKMVEDh7y8Ae4cqApGnMn3149L gfunkmonk@gfunkmonk-HP-Pavilion-17-Notebook-PC" From 1dcf71abb175883eec4c7b039a011f00a2947b13 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 16 May 2020 10:49:04 +0200 Subject: [PATCH 153/356] Adding user maqsoodyaqub --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/maqsoodyaqub.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/maqsoodyaqub.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4ec4ad9e..b9ad455d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -219,3 +219,4 @@ - include: users/lickthecheese.yml - include: users/faabb.yml - include: users/gfunkmonk.yml +- include: users/maqsoodyaqub.yml diff --git a/roles/shell/tasks/users/maqsoodyaqub.yml b/roles/shell/tasks/users/maqsoodyaqub.yml new file mode 100644 index 00000000..c19dd77d --- /dev/null +++ b/roles/shell/tasks/users/maqsoodyaqub.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up maqsoodyaqub + user: + name: maqsoodyaqub + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/maqsoodyaqub +- authorized_key: + user: maqsoodyaqub + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDUCBaaCMfCbS2BOKfywsckHoR35IzxCVoKj+AeEOhI1EtUEn3+Asb50NKr74c6UpyELDs41GQPBwpFHGUdzEcySfWINOYNKCJTXC3j4cTqnvaojuTRS8c+ra/gUBENjBkbt+HThWBpVEAsStLGWnSXrxxOMA6sOp081mqIoAe+jpQiDvFkkOIZI8m/Cme67BAGXNM50yzs8cTsRl8Gwg58HS6X6OYqsiCnbEQzlTBYHzTYm52JO+dF4e9EtTcpOHbakSAg5mTc0x9QKQV9nZNC5EgefI+JP35FvMCg/7LoNb2am38rQMBEjDkceaOlpQaXb4hSNHq43xEjW5YSvEIn8xixs5LPggssgJDxChiBi1DJR9f1AidSY1K7OXN9E3FspbtuI2iB+uW6dcqnItICYZn4AWUHcR1EIcP8hQXt9rQWnajjh/oohS24pPoqM0lKurSOnNiXuPpQuhyqkEBA8Z1DSAk8H4Xopv05HbsEIL6WAw3SIVecpnks+I7O00= maqsood@pop-os" From 359e08a74cad61a7fd8a81a4e49f4b2aeda88ac7 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Sun, 17 May 2020 14:23:58 +1000 Subject: [PATCH 154/356] Install cloc --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 1a5fae15..fe2d920d 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -72,6 +72,7 @@ - bzflag-server - ca-certificates-mono - caca-utils + - cloc - cmake - cmark - context From 29f148bedc2cbf7e1e63cd13a16c9f1cbef4f6f5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 17 May 2020 18:49:46 +0200 Subject: [PATCH 155/356] Adding user anterstor --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/anterstor.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/anterstor.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index b9ad455d..ecb2f1ac 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -220,3 +220,4 @@ - include: users/faabb.yml - include: users/gfunkmonk.yml - include: users/maqsoodyaqub.yml +- include: users/anterstor.yml diff --git a/roles/shell/tasks/users/anterstor.yml b/roles/shell/tasks/users/anterstor.yml new file mode 100644 index 00000000..921ef125 --- /dev/null +++ b/roles/shell/tasks/users/anterstor.yml @@ -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" From d3cb7ea59fd714904db9761c618f6077011b650b Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 17 May 2020 18:55:03 +0200 Subject: [PATCH 156/356] Adding user markten --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/markten.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/markten.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index ecb2f1ac..27fbd13d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -221,3 +221,4 @@ - include: users/gfunkmonk.yml - include: users/maqsoodyaqub.yml - include: users/anterstor.yml +- include: users/markten.yml diff --git a/roles/shell/tasks/users/markten.yml b/roles/shell/tasks/users/markten.yml new file mode 100644 index 00000000..67b6a91a --- /dev/null +++ b/roles/shell/tasks/users/markten.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up markten + user: + name: markten + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/markten +- authorized_key: + user: markten + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCrF/bo4eksJkhcF1u0ZJ6A7b1S4SuNTuKRCq/4ccRpn/Qu0hKQ6rsb/Mv2Kf3DHCMoAz/MQ+qMY7ff5YTGovx/MO215t0frE038QMpqDuddxKaj2+F+u2lfuOR31ACu4tXXitcMbCOXANFs/g6JwBBqhW1Iafe4ooXmJ3BvTokvZYCWviA5lGtFjv7PIiqiY4SwbWUhzzaXP5ghZSUrsncb4xc3Ti/p3fKu9SyTU6Fk21rHZtZHPLrvIoDvOI/WY4R/pbPIrgiabpN45KEZqtxf+Dzm9YFA8+sQ3s/LTHLhdDcHmVIDNZDf5Ffix5r5Zco66bpqeIJxjEoT4XbQE5GL77hPqgBePQgrfdALHk80zY3Ofi5Wjuvt3iwBLDFrFUwf4lhJIb4j+frFc9EjlbmWEdO6yN+RMqIoBoZTOrFABCwklyi7biTuFs8EkNMYa7A6AzGMHvLirxitPThQTprw3OlzWPnwYFTgT5mtfsiYgFrjc+T9SG1gSd6kr7NXFtuywzmAS0KtcwdXZddzE0fhHx5r6sGBxDKDhuXUt3UXz79VUFhtHttF+dUA10kwfxF3Xl80JVVvCW+LsEZWEE1BxrM/luW5DKD1i81HUxThG5RS7R8TekF/FXWoongCwUepbJ4QLwcVIppzC10FKA1DshWzZYS3Yp3FHhmXEm7Tw== imdc.technologies@gmail.com" From 8f0f0431abb1e17505fe669b5a81eafd0bea0751 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 19 May 2020 06:23:10 +0200 Subject: [PATCH 157/356] Adding user TouchTheStarsInAwe --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/TouchTheStarsInAwe.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/TouchTheStarsInAwe.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 27fbd13d..0a3abc64 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -222,3 +222,4 @@ - include: users/maqsoodyaqub.yml - include: users/anterstor.yml - include: users/markten.yml +- include: users/TouchTheStarsInAwe.yml diff --git a/roles/shell/tasks/users/TouchTheStarsInAwe.yml b/roles/shell/tasks/users/TouchTheStarsInAwe.yml new file mode 100644 index 00000000..5de02e74 --- /dev/null +++ b/roles/shell/tasks/users/TouchTheStarsInAwe.yml @@ -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" From 3d29a5eb7b1c6c3a5af88d37f358a99dacd61a9a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 21 May 2020 06:48:23 +0200 Subject: [PATCH 158/356] Adding user sebastian --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sebastian.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sebastian.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 0a3abc64..30c25995 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -223,3 +223,4 @@ - include: users/anterstor.yml - include: users/markten.yml - include: users/TouchTheStarsInAwe.yml +- include: users/sebastian.yml diff --git a/roles/shell/tasks/users/sebastian.yml b/roles/shell/tasks/users/sebastian.yml new file mode 100644 index 00000000..1365728b --- /dev/null +++ b/roles/shell/tasks/users/sebastian.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sebastian + user: + name: sebastian + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sebastian +- authorized_key: + user: sebastian + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCmhIaSchIJLukzkQe2mHG2REeFy5I5mh99O9GS3M7qypKtIq9QNU7yscYk3uIryiQhzNPfJo9M9gurf/5QR5RE4IJbF5QQ8s/BSpaSPINfAgUpxlOvtISGkAU0SRL0+rO5d/WIaA7gLEa52l6viFLB3QnojAT6Jj/DPQMD4qLRcLksiToBkW5/dHQ/cv3QnWYd08FWa5qfhYu0mIJc9FbgkTBGoP2FcdllDWSIDuIBdaamLTbWvTFYhIxlv7CTmQWfMrtF7I2FkPFU2SZyzEbOOlNd+ldL5XXPAQm/87R1p4MJQ5lpdEt/6xXtVi+VVioNXomGMzZQJkbUcn17tpIQG4Ym0E/FqCo9MaInVWHN3lkmkzB4ox+BGsvBX7jBeH55VcW/V6KKlIWiHE9dJTZ81dIb6Lrvu4herzOjmwoT0lxomwI6U+VNrpWhM7ird8OArzFohv/jOvIyzQDxbnajLG1124uzSTTJiQK/kXli7MBOoYroHTdykYHnXsTdDVixzfSTBkzN4+8TkQ/2YlDrpF97c1m3blOauhM0ZWgI2Dv+OoKFXnwtsKmjgEod2+/SbihsauJ/K4FWCeGpoMy8rd8o5DGNjy2f5kuojwyoFvasgFdlfFr/b/echDPLWpvpOL/tf4vwsY3o5zzR4fGBXPIHPHUNrKnn5z/dsLSLew== sebastian@NotMyLaptop" From 909013b90b23dbead1d50c5f17fea291a742873e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 25 May 2020 12:02:37 +0200 Subject: [PATCH 159/356] Adding user duitser --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/duitser.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/duitser.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 30c25995..2ea0316c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -224,3 +224,4 @@ - include: users/markten.yml - include: users/TouchTheStarsInAwe.yml - include: users/sebastian.yml +- include: users/duitser.yml diff --git a/roles/shell/tasks/users/duitser.yml b/roles/shell/tasks/users/duitser.yml new file mode 100644 index 00000000..a9e6e378 --- /dev/null +++ b/roles/shell/tasks/users/duitser.yml @@ -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" From e4b49ec06242f5bafa8afa7c6ae4a7011e45625d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 26 May 2020 17:43:34 +0200 Subject: [PATCH 160/356] Adding user lonely-wolf --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lonely-wolf.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lonely-wolf.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 2ea0316c..17ff6a3e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -225,3 +225,4 @@ - include: users/TouchTheStarsInAwe.yml - include: users/sebastian.yml - include: users/duitser.yml +- include: users/lonely-wolf.yml diff --git a/roles/shell/tasks/users/lonely-wolf.yml b/roles/shell/tasks/users/lonely-wolf.yml new file mode 100644 index 00000000..1f628da8 --- /dev/null +++ b/roles/shell/tasks/users/lonely-wolf.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lonely-wolf + user: + name: lonely-wolf + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lonely-wolf +- authorized_key: + user: lonely-wolf + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q==" From aa0e9c98ba55a44a59e351a13c816b904beadd20 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 26 May 2020 17:51:24 +0200 Subject: [PATCH 161/356] Adding user cloverfield --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cloverfield.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cloverfield.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 17ff6a3e..de63ff9a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -226,3 +226,4 @@ - include: users/sebastian.yml - include: users/duitser.yml - include: users/lonely-wolf.yml +- include: users/cloverfield.yml diff --git a/roles/shell/tasks/users/cloverfield.yml b/roles/shell/tasks/users/cloverfield.yml new file mode 100644 index 00000000..cb985ea4 --- /dev/null +++ b/roles/shell/tasks/users/cloverfield.yml @@ -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" From 6f6912586421ec5e90688d6e4bb012536ce1f3cf Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 26 May 2020 18:10:51 +0200 Subject: [PATCH 162/356] Adding user rozhik --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/rozhik.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/rozhik.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index de63ff9a..42ab871d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -227,3 +227,4 @@ - include: users/duitser.yml - include: users/lonely-wolf.yml - include: users/cloverfield.yml +- include: users/rozhik.yml diff --git a/roles/shell/tasks/users/rozhik.yml b/roles/shell/tasks/users/rozhik.yml new file mode 100644 index 00000000..f58da7f2 --- /dev/null +++ b/roles/shell/tasks/users/rozhik.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up rozhik + user: + name: rozhik + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/rozhik +- authorized_key: + user: rozhik + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOCinZ1M6yB0NikiJQaUuHZvXod7Z4iEimvJ2cFAgDgiwGcTjFSkTKyynCwT0lWFpYFd+dv2ZJ/A+vo2sLsp5HpH2nTwAMy37C0tFM+HpgdIdeupMk+OQe1qbmdpY0AyGkzWOfYvOGdi9aWVerEsMbSXfXIFFyeSkRhr9MglZKaEWBFbx8YLqiAqOufuIrGkcVN++IiU8OSIO3BpKUjRIfJodjGlZ3nytESBsLjQCz1Medeqtvt0vPY75TbRqr1eHsfIghLTCUjYUCIjEzFEYWP3X9b4c/Rf4uK0fvYnh0d9K2aeVCEWTAD/bQa57oE4c2wggJ5jaqHwOO7aNizF5h leonid@i.am.fromhell.lv" From b7059fc0c4c1b42941972b836c1f620efa542628 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 26 May 2020 12:13:02 -0400 Subject: [PATCH 163/356] Rm malicious user --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 42ab871d..c94d6179 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -227,4 +227,4 @@ - include: users/duitser.yml - include: users/lonely-wolf.yml - include: users/cloverfield.yml -- include: users/rozhik.yml +#- include: users/rozhik.yml From 3955904577e6b692370b010f8040260a065c0bf4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 26 May 2020 19:11:51 +0200 Subject: [PATCH 164/356] Adding user ComputerTech --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ComputerTech.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ComputerTech.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c94d6179..b5aaf1ee 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -228,3 +228,4 @@ - include: users/lonely-wolf.yml - include: users/cloverfield.yml #- include: users/rozhik.yml +- include: users/ComputerTech.yml diff --git a/roles/shell/tasks/users/ComputerTech.yml b/roles/shell/tasks/users/ComputerTech.yml new file mode 100644 index 00000000..d4a229aa --- /dev/null +++ b/roles/shell/tasks/users/ComputerTech.yml @@ -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 AAAAB3NzaC1yc2EAAAADAQABAAACAQCopVHx5MpFgOQ5Hx6dxvWi5/q0IcCVRYZfY1i6P6VoTk+XHKr+upD0z9ihdw4eQV5qjPl8C1Ev4ErvsaSpejcA8QfGpWJMvQJurR3DkOvIQWqA4kOey9LHcFcaN7Qq997UWUd6xfCSAuZFQuUrhGVnHXA3RKwTiyJKVU03oUOodhviidCnKjV9DxQqQ1rEJn+qURwc4+dThTEeBUc1hqyaUru1glDBAjiU7TE/x+yyG48N2fChf6/Er/ELVZqu+ds3KSSC+0Lcr/7CCNfn25kdXTGztY8+KUW5QPXY4dz0mgkv7uK+wgghqEE4h1bAI/FfJnMR5hXYaZ60E0MB/WATYIVXxC3rcHk9pGdei8uUeoCMPSMxJRqC9qrJwwjGmy+mTCRAKcABGgISqUhdFOasvK2ySTGofY0LlyePJ/6Wi9O57+oISEpO2icTQVWw+LtRqjW5xC4HYb5DfUyOOp3v3cz7sCvXtbFI6MbbRhezE1VvltFywd1ea/0/jIy4ii4HQNMfVDNAEahr5xU2sBA8mNol6U6VzdjeMayAN8tNuVbkwGqojDbrU7RDO4DqmDzpi1LVvqfPE/LJijg0wwW8BI6xNQKzTk3vEdaQG8DfwIheXtafIyevKLdqIKI/hg6Ao9I/bNP1aC3QEm0azS+dZFm/c9W+xOtQzaU2Qeq/mQ== computertech@bitcoinshell" From 1b6977bf88c13f20e1ed389dc6f58d729a3bc560 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 31 May 2020 23:20:43 +0200 Subject: [PATCH 165/356] Adding user noteness --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/noteness.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/noteness.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index b5aaf1ee..be2406d6 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -229,3 +229,4 @@ - include: users/cloverfield.yml #- include: users/rozhik.yml - include: users/ComputerTech.yml +- include: users/noteness.yml diff --git a/roles/shell/tasks/users/noteness.yml b/roles/shell/tasks/users/noteness.yml new file mode 100644 index 00000000..aa315706 --- /dev/null +++ b/roles/shell/tasks/users/noteness.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up noteness + user: + name: noteness + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/noteness +- authorized_key: + user: noteness + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABEQAAAgEAqkTkoI9BJwe7OvpXRA8TkscbzMsCUfXu7IWIQMtCnHlLG5ZiTlER0UUKt3r1JNfx5700IV7NjNFLjJBFHMLJKrHNm/X/t6IU3lIpVds/P+9wTeDjCXxTdmh0vslLXwYenKIcBsvwVQxbMlDKkKxfWQyvAG/nLjqENeQRNCMGbbw+X+yhIipPJ9tPfTh4cddlN997XUkYMuRhpvhRzc1/M/wzE68qA5qB14YZC38ktr4+Dy7P4JnbR2YUrY14L5n3kzMJrTdxmd2pxdaWW4K1X3OfqN1S4CxXmf036+Pk/x+XjxabVbukHp9qDjB1aSl9QvjuG3cTKrts79LP51vVu38EyqIoH6Fxmp8gbpNyZWF9HBI8ADAjd6LTWp4Y4vuUAIkUZ0CbJHO9WBzDJZir2akQekdfRYrn9WlOtY/FL7UuAwJb8rJ57UAx/uMBt9WByhSBNm/MjxUQksi54Sh5J+QCd8G957ytzvVGFOVW3bO3BDnXw9UdzBV2MJXgt+f6G/Ec0m9njwGy27NiZzJlt39N3eFjoRYAsvMKS0Cq8CMAgXC6718iEQhwfJ0Jy28CbvVU5b3GYOECYg5S+Ej2uZiq/mZrpXFtSSB+waDWsKExiNwIGSsFKtlWff2q6q1hdiqBYCCTkqB5DehvfqIdQX6scAewsITPVqfMDnhv8aE=" From 4a5d67e3f8d9aac7c589cd26315567cf07a17713 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 31 May 2020 21:24:08 -0400 Subject: [PATCH 166/356] Fixing reports for mail --- roles/shell/files/etc/cron.daily/postfix_stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/etc/cron.daily/postfix_stats b/roles/shell/files/etc/cron.daily/postfix_stats index 99ba6681..8eab39db 100644 --- a/roles/shell/files/etc/cron.daily/postfix_stats +++ b/roles/shell/files/etc/cron.daily/postfix_stats @@ -1,2 +1,2 @@ #!/bin/bash -/usr/sbin/pflogsumm /var/log/mail.log.1 | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net +/usr/sbin/pflogsumm /var/log/mail.log | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net From 0ac9d5a3ccd62ad96a51eda8cc9a1107a1a3eab4 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 31 May 2020 21:25:11 -0400 Subject: [PATCH 167/356] Making more better --- roles/shell/files/etc/cron.daily/postfix_stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/etc/cron.daily/postfix_stats b/roles/shell/files/etc/cron.daily/postfix_stats index 8eab39db..a7b6c605 100644 --- a/roles/shell/files/etc/cron.daily/postfix_stats +++ b/roles/shell/files/etc/cron.daily/postfix_stats @@ -1,2 +1,2 @@ #!/bin/bash -/usr/sbin/pflogsumm /var/log/mail.log | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net +/usr/sbin/pflogsumm -d today /var/log/mail.log | mail -s "Mail Report for `date +%Y/%m/%d`" postmaster@thunix.net From 27eb2f4f9a4cbf970aea8be686aa07491a53be71 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 1 Jun 2020 08:51:12 -0400 Subject: [PATCH 168/356] Adding user baloo --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/baloo.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/baloo.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index be2406d6..5245bf70 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -230,3 +230,4 @@ #- include: users/rozhik.yml - include: users/ComputerTech.yml - include: users/noteness.yml +- include: users/baloo.yml diff --git a/roles/shell/tasks/users/baloo.yml b/roles/shell/tasks/users/baloo.yml new file mode 100644 index 00000000..26fdc25e --- /dev/null +++ b/roles/shell/tasks/users/baloo.yml @@ -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" From 9f637886f4314926a044e6ed7c62f15a04ba2271 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 2 Jun 2020 09:03:15 +0200 Subject: [PATCH 169/356] Adding user sriwafikadr --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sriwafikadr.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sriwafikadr.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5245bf70..11784db0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -231,3 +231,4 @@ - include: users/ComputerTech.yml - include: users/noteness.yml - include: users/baloo.yml +- include: users/sriwafikadr.yml diff --git a/roles/shell/tasks/users/sriwafikadr.yml b/roles/shell/tasks/users/sriwafikadr.yml new file mode 100644 index 00000000..b808d6eb --- /dev/null +++ b/roles/shell/tasks/users/sriwafikadr.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sriwafikadr + user: + name: sriwafikadr + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sriwafikadr +- authorized_key: + user: sriwafikadr + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEA5rS+M1WPuXvCI5YrX0V6+G4IzRN1waxlJEs2pKSlKZV7q94GlIOB6oXG05lNo2i1WFeP+229xALyt6/9Z+Muz5kOKo4XmEA5cHUv6wVqMcA8dUnS5WhlrSGDGqrequ38WCmxT5Bi4Jg70vIXx+trWeKsF37rHPF44Jsmts3fASBC9wXWjwP131eTfkwn5K6FSvROfW63JaBIB2RxgEph80uvcrBrXXh0peZtrL5Y7WUgH/OZ0hl6Nr8gZU5znoCtaeAxvTnF6qakukJAFFHh7SLeKsz8a30DTXbCCtUUY7HLRG8Yj2UcFGrf23vEEGJ5TElT4CMUTtMQsiDjJ/snNQ== rsa-key-20200601" From 3899d9a239bd917209c453e213f6ff8ec793e8ae Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 2 Jun 2020 23:01:55 +0200 Subject: [PATCH 170/356] Adding user sillyfanboy --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sillyfanboy.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sillyfanboy.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 11784db0..9bb473e4 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -232,3 +232,4 @@ - include: users/noteness.yml - include: users/baloo.yml - include: users/sriwafikadr.yml +- include: users/sillyfanboy.yml diff --git a/roles/shell/tasks/users/sillyfanboy.yml b/roles/shell/tasks/users/sillyfanboy.yml new file mode 100644 index 00000000..0ef8583b --- /dev/null +++ b/roles/shell/tasks/users/sillyfanboy.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sillyfanboy + user: + name: sillyfanboy + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sillyfanboy +- authorized_key: + user: sillyfanboy + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDASIow9WzG1crnUe7FpgotmtI3D8H2ZsxksXWuEP/bk8fjdXyqVnzepjkeqmrOzw2La3MFdddnoRfle51OS2Xrr7cbsMAS2P79ygcjj6CBbJU0Y+2XYukLUX9DmSQjYM11CUFCVCjal13hYdTb4NxVeLeSaGxruK5bEGDnc+Hdl+tt11RomxAsqWvBPXAnZR5dhNkZX6FNibFfxAPhbMhPobggmegOYKVuIObpx92D5+VFmjZXVCriDi0d/2H0yyNEZR7F3FLodET/YyWl0/DS64bUb5KXPtcwI/BLBFqSf2wO7wv8JIwRqCnScbvX57SyHkRnn6Oayf9AUivWbo2x patrick@Patricks-MacBook-Air.local" From 88be4d364235c7e57b1205cd5c65be7b0f000054 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 2 Jun 2020 23:03:13 +0200 Subject: [PATCH 171/356] Adding user gyges --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gyges.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gyges.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9bb473e4..9096fa26 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -233,3 +233,4 @@ - include: users/baloo.yml - include: users/sriwafikadr.yml - include: users/sillyfanboy.yml +- include: users/gyges.yml diff --git a/roles/shell/tasks/users/gyges.yml b/roles/shell/tasks/users/gyges.yml new file mode 100644 index 00000000..d3037a17 --- /dev/null +++ b/roles/shell/tasks/users/gyges.yml @@ -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" From b78020bd4d2edecf14fcd68b72f3932101508312 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 3 Jun 2020 19:44:58 +1000 Subject: [PATCH 172/356] Enable appropriate reverse proxy apache mods --- roles/webserver/tasks/apache2-mods.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/webserver/tasks/apache2-mods.yml b/roles/webserver/tasks/apache2-mods.yml index 2850deac..c29f5d28 100644 --- a/roles/webserver/tasks/apache2-mods.yml +++ b/roles/webserver/tasks/apache2-mods.yml @@ -16,3 +16,11 @@ apache2_module: name: rewrite state: present +- name: proxy + apache2_module: + name: proxy + state: present +- name: proxy_http + apache2_module: + name: proxy_http + state: present From f5209ba179ea08214d729004d531d4bb8a9f9a10 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 3 Jun 2020 19:46:36 +1000 Subject: [PATCH 173/356] Add lukewarmcat nodejs apache config --- .../apache2/sites-available/lukewarmcat.codes-nodejs.conf | 6 ++++++ roles/webserver/tasks/apache.yml | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf diff --git a/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf new file mode 100644 index 00000000..e198f558 --- /dev/null +++ b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf @@ -0,0 +1,6 @@ + + ServerName xerty.lukewarmcat.codes + ProxyRequests On + ProxyPass / http://localhost:3000 + ProxyPassReverse / http://localhost:3000 + diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index f11bd2db..741abf68 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -1,4 +1,4 @@ -#This play configs apapche for us +#This play configs apache for us --- - name: Add certbot cron job copy: @@ -82,6 +82,11 @@ src: ../files/etc/apache2/sites-available/lukewarmcat.codes.conf dest: /etc/apache2/sites-available/lukewarmcat.codes.conf +- name: Deploy apache site conf for xerty.lukewarmcat.codes + copy: + src: ../files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf + dest: /etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf + - name: Deploy apache site conf for mightywcms.thunix.net copy: src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf From 6543984c81461046a198c21f724abf22367b4323 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 3 Jun 2020 19:53:38 +1000 Subject: [PATCH 174/356] Cleanup apache --- roles/webserver/tasks/apache.yml | 129 +++++++++++-------------------- 1 file changed, 46 insertions(+), 83 deletions(-) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index 741abf68..c8db239d 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -1,52 +1,57 @@ -#This play configs apache for us +# Configure apache2 --- + +# Certbot - name: Add certbot cron job copy: src: ../files/certbot-renew dest: /etc/cron.weekly/certbot-renew owner: root - mode: 744 + mode: 755 -#Sites -- name: Deploy Apache2 Site Config default-ssl.conf +# Sites +- name: Deploy Apache2 site configs copy: - src: ../files/etc/apache2/sites-available/default-ssl.conf - dest: /etc/apache2/sites-available/default-ssl.conf - -- name: Deploy Apache2 Site Config thunix.cf.conf - copy: - src: ../files/etc/apache2/sites-available/thunix.cf.conf - dest: /etc/apache2/sites-available/thunix.cf.conf - -- name: Deploy Apache2 Site Config www.thunix.cf.conf - copy: - src: ../files/etc/apache2/sites-available/www.thunix.cf.conf - dest: /etc/apache2/sites-available/www.thunix.cf.conf - -- name: Deploy Apache2 Site Config ftp.thunix.cf.conf - copy: - src: ../files/etc/apache2/sites-available/ftp.thunix.cf.conf - dest: /etc/apache2/sites-available/ftp.thunix.cf.conf - -- name: Deploy Apache2 Site Config thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/thunix.net.conf - dest: /etc/apache2/sites-available/thunix.net.conf - -- name: Deploy Apache2 Site Config www.thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/www.thunix.net.conf - dest: /etc/apache2/sites-available/www.thunix.net.conf - -- name: Deploy apache2 site conf for ftp.thunix.net.conf - copy: - src: ../files/etc/apache2/sites-available/ftp.thunix.net.conf - dest: /etc/apache2/sites-available/ftp.thunix.net.conf - -- name: Deploy apache2 site conf for staticadventures.netlib.re - copy: - src: ../files/etc/apache2/sites-available/staticadventures.netlib.re.conf - dest: /etc/apache2/sites-available/staticadventures.netlib.re.conf + src: ../files/etc/apache2/sites-available/{{ item }}.conf + dest: /etc/apache2/sites-available/{{ item }}.conf + loop: + - default-ssl + - thunix.cf + - www.thunix.cf + - ftp.thunix.cf + - thunix.net + - www.thunix.net + - ftp.thunix.net + - staticadventures.netlib.re + - deb.thunix.net + - rpm.thunix.net + - stats.thunix.net + - wiki.thunix.net + - lukewarmcat.codes + - xerty.lukewarmcat.codes + - mightywcms.thunix.net + +- name: Make Apache2 site configs live + file: + src: /etc/apache2/sites-available/{{ item }}.conf + dest: /etc/apache2/sites-enabled/{{ item }}.conf + state: link + loop: + - default-ssl + - thunix.cf + - www.thunix.cf + - ftp.thunix.cf + - thunix.net + - www.thunix.net + - ftp.thunix.net + - staticadventures.netlib.re + - deb.thunix.net + - rpm.thunix.net + - stats.thunix.net + - wiki.thunix.net + - lukewarmcat.codes + - xerty.lukewarmcat.codes + - mightywcms.thunix.net - name: Give permissions for staticadventures.netlib.re to southerntofu file: @@ -54,46 +59,4 @@ state: directory owner: southerntofu group: southerntofu - mode: 744 recurse: yes # Can be removed in the future, but for now all files still have old uid/gid - -- name: Deploy apache site conf for deb.thunix.net - copy: - src: ../files/etc/apache2/sites-available/deb.thunix.net.conf - dest: /etc/apache2/sites-available/deb.thunix.net.conf - -- name: Deploy apache site conf for rpm.thunix.net - copy: - src: ../files/etc/apache2/sites-available/rpm.thunix.net.conf - dest: /etc/apache2/sites-available/rpm.thunix.net.conf - -- name: Deploy apache site conf for stats.thunix.net - copy: - src: ../files/etc/apache2/sites-available/stats.thunix.net.conf - dest: /etc/apache2/sites-available/stats.thunix.net.conf - -- name: Deploy apache site conf for wiki.thunix.net - copy: - src: ../files/etc/apache2/sites-available/wiki.thunix.net.conf - dest: /etc/apache2/sites-available/wiki.thunix.net.conf - -- name: Deploy apache site conf for lukewarmcat.codes - copy: - src: ../files/etc/apache2/sites-available/lukewarmcat.codes.conf - dest: /etc/apache2/sites-available/lukewarmcat.codes.conf - -- name: Deploy apache site conf for xerty.lukewarmcat.codes - copy: - src: ../files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf - dest: /etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf - -- name: Deploy apache site conf for mightywcms.thunix.net - copy: - src: ../files/etc/apache2/sites-available/mightywcms.thunix.conf - dest: /etc/apache2/sites-available/mightywcms.thunix.conf - -- name: Create the symbolic link for mightywcms.thunix.net - file: - src: /etc/apache2/sites-available/mightywcms.thunix.conf - dest: /etc/apache2/sites-enabled/mightywcms.thunix.conf - state: link From df17b5bece48ecafdb7409e44020bbf8481dc323 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Wed, 3 Jun 2020 20:34:26 +1000 Subject: [PATCH 175/356] fix config for lukewarmcat.codes-nodejs.conf --- .../etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf index e198f558..7eb9b741 100644 --- a/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf +++ b/roles/webserver/files/etc/apache2/sites-available/lukewarmcat.codes-nodejs.conf @@ -1,6 +1,6 @@ ServerName xerty.lukewarmcat.codes ProxyRequests On - ProxyPass / http://localhost:3000 - ProxyPassReverse / http://localhost:3000 + ProxyPass / http://localhost:3000/ + ProxyPassReverse / http://localhost:3000/ From b788b24136ff94b8511da3e5ec654a5d556b9b7a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 8 Jun 2020 18:04:55 +0200 Subject: [PATCH 176/356] add utility to view and extract RAR archives --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index fe2d920d..9898b3c1 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -245,6 +245,7 @@ - telnet - telegram-cli - todotxt-cli + - unrar-free - uuid - vim - vrms From 35d00e881072690604f6256c64d88fc8fc79ad03 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 10 Jun 2020 09:25:15 +0200 Subject: [PATCH 177/356] Adding user brendantcc --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/brendantcc.yml | 7 +------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9096fa26..c9a0db41 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -234,3 +234,4 @@ - include: users/sriwafikadr.yml - include: users/sillyfanboy.yml - include: users/gyges.yml +- include: users/brendantcc.yml diff --git a/roles/shell/tasks/users/brendantcc.yml b/roles/shell/tasks/users/brendantcc.yml index 1f3465c1..3fc53fbb 100644 --- a/roles/shell/tasks/users/brendantcc.yml +++ b/roles/shell/tasks/users/brendantcc.yml @@ -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" - \ No newline at end of file + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1gRGgChQut+E+nP+4mzAymKBiE722w/j2wAo53U49kbpWNMQTPPyky7jIqMQMKFbtgE0WLe/D5+ut9lumcnKuX1molE0mPKwbK8LSVO/+fICiCPzTXvdAyES/iMiBdUB9G518unhCO/dD24rH40kzBcnX6LJXM4ZdkRor6gm1y7i642seeMzqHaOjAmA6sUbDkk9DuypBzSf317Qq8i06LjyNVIXJyJV83NBT38ruZoB0Sl/q+4w5yJeAegxJlz5ZWUwEAhDVrWdNdgYV9xhMJxEZclSteicvK+ef36CaUepu77AKIFVXuKhfECKZWjYcO0niLlBxN8mPBSeaEIsv" From 7c101aff8ebf5838c4ae1886439c6ada3e4b2371 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 10 Jun 2020 09:35:30 +0200 Subject: [PATCH 178/356] Adding user stadham --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/stadham.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/stadham.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c9a0db41..698b5d18 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -235,3 +235,4 @@ - include: users/sillyfanboy.yml - include: users/gyges.yml - include: users/brendantcc.yml +- include: users/stadham.yml diff --git a/roles/shell/tasks/users/stadham.yml b/roles/shell/tasks/users/stadham.yml new file mode 100644 index 00000000..382fc0e9 --- /dev/null +++ b/roles/shell/tasks/users/stadham.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up stadham + user: + name: stadham + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/stadham +- authorized_key: + user: stadham + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDxIFoOwfV5l40jqPgzA6IncNivQFjkUS/rHzEx8euioi9aOiGLoDTY7kN/TGOGmHgidHLCSceDLC3qDYAZ37/fzrtjkTnrFacxhr88LEhn7nZN+EuMOPnY2Yk3KdcWtLch0qb/sSgQKVMTf9th7AbfdVgY6Y/YBO9LR6iGUdsGYPbEVoSn6USqm/HbQYIq2mc2F3+6anvhQuI6jpoW1jKg5x11sJb+t0+upITKBOqUcpfLYWORiWisTTi5WW67i73XZqwDwq8m8N5s2q0Ouqipt27QuBj1JAo+ckIcGIzWqy49tuwR4YHS/LgeutLLCPJqn/NzRBsNRz5R4EFw6KYb randy.s@Mr-Stadham-5.local" From d24ac5247a1678bc4f820c9c67bca58455f3ba21 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 10 Jun 2020 11:30:10 +0200 Subject: [PATCH 179/356] adding lolcat: concatenates similar to cat adding rainbow color --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 9898b3c1..5dc5d4a9 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -131,6 +131,7 @@ - libtool - libtool-bin - linux-headers-amd64 + - lolcat - lua5.3 - lynx - make From 5e0a272992bf12eae2a92b22d6d3f72e963a7eac Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 12 Jun 2020 11:35:50 +0200 Subject: [PATCH 180/356] Adding user missk --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/missk.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/missk.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 698b5d18..50083440 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -236,3 +236,4 @@ - include: users/gyges.yml - include: users/brendantcc.yml - include: users/stadham.yml +- include: users/missk.yml diff --git a/roles/shell/tasks/users/missk.yml b/roles/shell/tasks/users/missk.yml new file mode 100644 index 00000000..50b44000 --- /dev/null +++ b/roles/shell/tasks/users/missk.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up missk + user: + name: missk + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/missk +- authorized_key: + user: missk + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCvsjrxlpAraxqqVIFvJv9vyDt6GVpYTUHZj2taSC4zYVie7HG7lDofITkNdkW7rIR0YV4l+5XmjIak9VhkwvCMiBVgtl1vyZb/DEZR4Mb6COHbg2IZgo9ajie+0s42OX/HHot3iCovtGhJK7TksvGPhg7JPw9i/VEbUyXBJ8mtc1U7SRnk8uYAfPDosSEAaSDQqVq7g4SFVBRS+1gmSd4vj0kvpaJYZVNd0NdApKUJme+DWgeFJedQ349lEDyfHJh6g5qVTuxXmQjb38c+TDmddvAoMXrPhP5bTce7gaD8OmHliX/FqrYthgFQ3exhH1qY9+QSknWEu0dw0ieIOkPF missk" From 609d39fc1ae357043ff53d9a00986177a811d39c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 19 Jun 2020 23:41:49 +0200 Subject: [PATCH 181/356] Adding user Cha0t1c --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Cha0t1c.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Cha0t1c.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 50083440..523664cb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -237,3 +237,4 @@ - include: users/brendantcc.yml - include: users/stadham.yml - include: users/missk.yml +- include: users/Cha0t1c.yml diff --git a/roles/shell/tasks/users/Cha0t1c.yml b/roles/shell/tasks/users/Cha0t1c.yml new file mode 100644 index 00000000..0e9b23e6 --- /dev/null +++ b/roles/shell/tasks/users/Cha0t1c.yml @@ -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" From 818c30b34ff38ede6e5382a925b60b82e63271ae Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 20 Jun 2020 07:03:21 +0200 Subject: [PATCH 182/356] Adding user farooqkz --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/farooqkz.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/farooqkz.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 523664cb..eb74a776 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -238,3 +238,4 @@ - include: users/stadham.yml - include: users/missk.yml - include: users/Cha0t1c.yml +- include: users/farooqkz.yml diff --git a/roles/shell/tasks/users/farooqkz.yml b/roles/shell/tasks/users/farooqkz.yml new file mode 100644 index 00000000..b1658afa --- /dev/null +++ b/roles/shell/tasks/users/farooqkz.yml @@ -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" From b96c77af7f638cbf26895d15fd5161ab37a697a4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 21 Jun 2020 07:42:03 +0200 Subject: [PATCH 183/356] Adding user hellspawn --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/hellspawn.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/hellspawn.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index eb74a776..81a4e3fc 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -239,3 +239,4 @@ - include: users/missk.yml - include: users/Cha0t1c.yml - include: users/farooqkz.yml +- include: users/hellspawn.yml diff --git a/roles/shell/tasks/users/hellspawn.yml b/roles/shell/tasks/users/hellspawn.yml new file mode 100644 index 00000000..ad85fd2c --- /dev/null +++ b/roles/shell/tasks/users/hellspawn.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up hellspawn + user: + name: hellspawn + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/hellspawn +- authorized_key: + user: hellspawn + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQBfLm2Gw3qa5F6icTed6begIYi1s22Le+dGhFOFftSTLUkyg+n044387oL1yg0p2BL9hmoL6NV85x0Zap+naC1fqEBrvgC0F1xjcZBYn0ID1SfCQFomxK+hNBrk+CJSKL4xGIq5bBpeg8WJE6M6P/Wdjrh7dirlEoVKKNoxlaTNDy6HZudBLaeuBEzK2OwD7NBKqHaZT7cebMks6KfUvi0sYpgp3fG9AraOsrrGRPjQPay4bUc+oITrsCH4/g1AdnlDmLhz5Psi88v6YWKE8/T0fnvW8VfiP1GGLLg58N4pV2uo63u5UGyyvNFo9s7A4dqKKVASu3v4R/JfQHz5cIaP rsa-key-20200620" From 0e88b468895e45cde0800f16a5855077a13cf0d8 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 23 Jun 2020 00:01:50 +0200 Subject: [PATCH 184/356] Adding user kuldar --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/kuldar.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/kuldar.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 81a4e3fc..d335c2f0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -240,3 +240,4 @@ - include: users/Cha0t1c.yml - include: users/farooqkz.yml - include: users/hellspawn.yml +- include: users/kuldar.yml diff --git a/roles/shell/tasks/users/kuldar.yml b/roles/shell/tasks/users/kuldar.yml new file mode 100644 index 00000000..8864b8c7 --- /dev/null +++ b/roles/shell/tasks/users/kuldar.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up kuldar + user: + name: kuldar + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/kuldar +- authorized_key: + user: kuldar + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPMxfEsl6GwmfM1NUnSErOQXY4Klw1e0mTzJxrHVdTNU kuldar@localhost" From 48cbb3295f56223d18cb8555287ee7e78e938788 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 23 Jun 2020 00:11:43 +0200 Subject: [PATCH 185/356] Adding user igor --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/igor.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/igor.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d335c2f0..419dbf4b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -241,3 +241,4 @@ - include: users/farooqkz.yml - include: users/hellspawn.yml - include: users/kuldar.yml +- include: users/igor.yml diff --git a/roles/shell/tasks/users/igor.yml b/roles/shell/tasks/users/igor.yml new file mode 100644 index 00000000..56b9be58 --- /dev/null +++ b/roles/shell/tasks/users/igor.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up igor + user: + name: igor + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/igor +- authorized_key: + user: igor + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMDy+FMkM8Dhjj57dIZa6Aw3nvBIHiIzBU/rwNtOL20V" From e036680530806de090f2ced2f40aa92c2bb92390 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 24 Jun 2020 00:17:56 +0200 Subject: [PATCH 186/356] Adding user randocontent --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/randocontent.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/randocontent.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 419dbf4b..fd8012fd 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -242,3 +242,4 @@ - include: users/hellspawn.yml - include: users/kuldar.yml - include: users/igor.yml +- include: users/randocontent.yml diff --git a/roles/shell/tasks/users/randocontent.yml b/roles/shell/tasks/users/randocontent.yml new file mode 100644 index 00000000..8e845a67 --- /dev/null +++ b/roles/shell/tasks/users/randocontent.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up randocontent + user: + name: randocontent + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/randocontent +- authorized_key: + user: randocontent + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDKdDUMH+qn1pIVjtfhFFaBS3NkUwZJJtVDoBYImsD2mbca+nwlK7QTEtSXDh0U7QYDvG0JO0HO36utIABpi0SGjIzjaslSMy/0SNKjLY0QGdMc/QjamJ9WqIOEBp3kF++z87ddkJaZiwpV/Z0v2UcAQ0rNAJWxrJHtvNQjlUIWHQT2IiqUOI6zgTqZL1C038XwVfF9Dmwqlk9XezVUhaq67xUSmm/NpqtUs3ConYK7zyo04yNocblB7HWkJR99oDuDmpcciRRNbOVPbBgtb1VmWqgHpEzt+2YxVw7ZvNbUZDTcpct2NInTIdWrJTLlR7hlnomqn3Y93zgIM15IG1I6VREsl+EvjlNU7Z9hmcHjLpOlAmMcNGaAmHd5h1cQh07dX7JoQlc+V6XbMzMZXf/CSaSeV9z5cnPZXStW+VXWhcg1a9jDYM0cHswz+XdxwGzTds88iI6aS7w5pvEpDvrKiZkoWL7o4HWR+LeIE36fS9cweEkzzqZdP703KxmgeOU= rando" From d73da5b1fee841b38cd42c1a9ceebb037636647c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 29 Jun 2020 16:09:15 +0200 Subject: [PATCH 187/356] Adding user chris --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/chris.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/chris.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index fd8012fd..da8d650e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -243,3 +243,4 @@ - include: users/kuldar.yml - include: users/igor.yml - include: users/randocontent.yml +- include: users/chris.yml diff --git a/roles/shell/tasks/users/chris.yml b/roles/shell/tasks/users/chris.yml new file mode 100644 index 00000000..1e0ae738 --- /dev/null +++ b/roles/shell/tasks/users/chris.yml @@ -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" From 7761ac089a8cfead8cb6ca4476378d4c38b3fef4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 5 Jul 2020 23:01:41 +0200 Subject: [PATCH 188/356] Adding user Cropt0 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Cropt0.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Cropt0.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index da8d650e..c224e4ad 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -244,3 +244,4 @@ - include: users/igor.yml - include: users/randocontent.yml - include: users/chris.yml +- include: users/Cropt0.yml diff --git a/roles/shell/tasks/users/Cropt0.yml b/roles/shell/tasks/users/Cropt0.yml new file mode 100644 index 00000000..60ef0886 --- /dev/null +++ b/roles/shell/tasks/users/Cropt0.yml @@ -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" From ea901c94dcfea703d89f3cfddc5059d6a267bd2a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 5 Jul 2020 23:03:13 +0200 Subject: [PATCH 189/356] Adding user Cryptolover248 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Cryptolover248.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Cryptolover248.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c224e4ad..a13c778d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -245,3 +245,4 @@ - include: users/randocontent.yml - include: users/chris.yml - include: users/Cropt0.yml +- include: users/Cryptolover248.yml diff --git a/roles/shell/tasks/users/Cryptolover248.yml b/roles/shell/tasks/users/Cryptolover248.yml new file mode 100644 index 00000000..67bb02e5 --- /dev/null +++ b/roles/shell/tasks/users/Cryptolover248.yml @@ -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" From 6bb54d7ba15564075746c578b251864485e2d039 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 5 Jul 2020 23:05:13 +0200 Subject: [PATCH 190/356] Adding user kcubeterm --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/kcubeterm.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/kcubeterm.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index a13c778d..ce810af0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -246,3 +246,4 @@ - include: users/chris.yml - include: users/Cropt0.yml - include: users/Cryptolover248.yml +- include: users/kcubeterm.yml diff --git a/roles/shell/tasks/users/kcubeterm.yml b/roles/shell/tasks/users/kcubeterm.yml new file mode 100644 index 00000000..bc88d4bc --- /dev/null +++ b/roles/shell/tasks/users/kcubeterm.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up kcubeterm + user: + name: kcubeterm + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/kcubeterm +- authorized_key: + user: kcubeterm + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCd8KhKye5cE3bm95AtZ+tOKCpiSehmMySOIZXYWSGObD0Wki7v+CzIOdW29EGADWJZXGJCUJ7feQzhSzv+Wccdw4O1T1zrjbZoJd68xRT9AVaNmyHcFlavptQFZn65UocI3VryiRLIzx5JFwW17iTPnJ2XX8DRhWS++G5DqEJqCYxPkeYd5xEjQYOtE5DjwIyfQEBZsa8wv+XA3Y0+KxKgFV0T+AkTaQUzEp817YVjV0vkgoNKvlNOP/54PHb3+5Wl6OWgja6jwDiQl3dBjCjFRKqKqZRa+Y1NVB/cD3HUpPG97u25R3Hi/c9BGCczsiRHpvniG1biDEYPg+PmZLur3DBUSSELWDkzfw78VJDkMC+Q+oMb7/ITXP3K6jTurWmitHik7pdJv8gEpt3fKohQc1wUL/sopbM99EGfCe9tUKX38shtgBIbnPHtfBitpPyIUOe5/jkSeV6IvI8kyRUTYZ4RAIkeh60m1hIlFd67/IXm+XMkPLGpfH+zSbSdO8U= kcubeterm" From ede75012dc750b487704b5508971073d06042a16 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 5 Jul 2020 23:07:21 +0200 Subject: [PATCH 191/356] Adding user genie_g --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/genie_g.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/genie_g.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index ce810af0..6fecd6a9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -247,3 +247,4 @@ - include: users/Cropt0.yml - include: users/Cryptolover248.yml - include: users/kcubeterm.yml +- include: users/genie_g.yml diff --git a/roles/shell/tasks/users/genie_g.yml b/roles/shell/tasks/users/genie_g.yml new file mode 100644 index 00000000..0d25bd41 --- /dev/null +++ b/roles/shell/tasks/users/genie_g.yml @@ -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" From 088d19c408b10046487f08bfad6f4debe579f664 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 6 Jul 2020 09:26:11 +0200 Subject: [PATCH 192/356] Adding user Kymonlucky --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Kymonlucky.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Kymonlucky.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6fecd6a9..c4d3a5b8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -248,3 +248,4 @@ - include: users/Cryptolover248.yml - include: users/kcubeterm.yml - include: users/genie_g.yml +- include: users/Kymonlucky.yml diff --git a/roles/shell/tasks/users/Kymonlucky.yml b/roles/shell/tasks/users/Kymonlucky.yml new file mode 100644 index 00000000..9a68766c --- /dev/null +++ b/roles/shell/tasks/users/Kymonlucky.yml @@ -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" From 80af1799fd0b5947e966f13cfc3563bebd052c47 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Tue, 7 Jul 2020 08:14:13 +1000 Subject: [PATCH 193/356] Install clang --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5dc5d4a9..ac65763e 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -72,6 +72,7 @@ - bzflag-server - ca-certificates-mono - caca-utils + - clang - cloc - cmake - cmark From 1ad903d111d7d13ca2bc28f7af21037c908f66e0 Mon Sep 17 00:00:00 2001 From: fosslinux Date: Tue, 7 Jul 2020 08:14:21 +1000 Subject: [PATCH 194/356] Install golang --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index ac65763e..fee2fc57 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -97,6 +97,7 @@ - fortune - frotz - gitweb + - go - gopher - gnome-icon-theme # - gnome-icon-theme-extras From 164041f01a6a12913a629df7ba9469394cb0cda9 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 9 Jul 2020 08:44:24 -0400 Subject: [PATCH 195/356] Swapping ident2 for oident --- roles/shell/tasks/packages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index fee2fc57..67374800 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -103,7 +103,7 @@ # - gnome-icon-theme-extras - htop - hugo - - ident2 +# - ident2 - inkscape - imagemagick - irssi @@ -174,6 +174,7 @@ - neomutt - newsbeuter - newsboat + - oident - openbsd-inetd - opendkim - openssl From 562b1ae33625ea5ace8d3400a64aac10f366c5ff Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 9 Jul 2020 08:51:34 -0400 Subject: [PATCH 196/356] Correct package name would be helpful --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 67374800..d8181bce 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -174,7 +174,7 @@ - neomutt - newsbeuter - newsboat - - oident + - oidentd - openbsd-inetd - opendkim - openssl From 727c4bf2413f2325025ea87f264a9813f83dfee6 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 9 Jul 2020 10:51:57 -0400 Subject: [PATCH 197/356] Adding golang, apparently package name changed --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index d8181bce..17b21e50 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -97,7 +97,7 @@ - fortune - frotz - gitweb - - go + - golang - gopher - gnome-icon-theme # - gnome-icon-theme-extras From eeb294d7f8e42338155b3176a177d228dabf8cd8 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 10 Jul 2020 09:18:57 +0200 Subject: [PATCH 198/356] Adding user core --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/core.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/core.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c4d3a5b8..491ef09a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -249,3 +249,4 @@ - include: users/kcubeterm.yml - include: users/genie_g.yml - include: users/Kymonlucky.yml +- include: users/core.yml diff --git a/roles/shell/tasks/users/core.yml b/roles/shell/tasks/users/core.yml new file mode 100644 index 00000000..45a6caa9 --- /dev/null +++ b/roles/shell/tasks/users/core.yml @@ -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" From cbe9309c4cab718f0a3f266c4c294196f00f24f0 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 10 Jul 2020 09:29:22 +0200 Subject: [PATCH 199/356] Adding user mirsella --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/mirsella.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/mirsella.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 491ef09a..26327d3e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -250,3 +250,4 @@ - include: users/genie_g.yml - include: users/Kymonlucky.yml - include: users/core.yml +- include: users/mirsella.yml diff --git a/roles/shell/tasks/users/mirsella.yml b/roles/shell/tasks/users/mirsella.yml new file mode 100644 index 00000000..60814d15 --- /dev/null +++ b/roles/shell/tasks/users/mirsella.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up mirsella + user: + name: mirsella + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/mirsella +- authorized_key: + user: mirsella + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFx6xjYiBpYJ+9j9HdQl8MS81v6ZaG1ouEGLwA4dgeeLspotToo9evv3pyVlFenE452xcrnNaRWT+aWfh8hrCI/EXw9EZGzVKj/Jwc1F+6opqwjnA5QgxzMXNx7lWO+fUKYJxYMgdvXk/gqD3Ixaxb22nnwuuxfk4IfHfFPiDobnikvdpDamvhamNSjwBg5QGOja18QANASgP6t7v2mbFyXj8eSLus4+2ocb56B69M1jxCJydjJ/DdrrNYwuWVusuxcBk7gxtxxbmRgMm0OI6cI+FNSThGH8E5MR4s/BVIMUqQvPzlIyyELkSn9A4FIaCKpy54TX1OCvcAaxKmiblH3BGQ8Ql9Kb4wrZDBrywpPFnZQJx3Hx6kA9k13XD5XUYZRatYbjHAqvPbItiVDXi9BVsn5uZ3ntP72PGZUmy6lUmyUAbJs8o/mHeUVxZyI9cXhQAmaPNiq9y+ExnYKx7MvMDDTcOOknVrTxSj0vyz3CF1+bbA1YzffbM5M9Xc+u7fkuP1OltTmtfYaPVBvH7idJq5D3cq/aRAVv7jbZdxLh3fPd0B+GVo2jtfBmzxa6mJWsAO6R+4X2jKdat07Ec+dpQ9dNcy55etFF1yUJgXh6hbSOdsyq3FTeXzneDaN4OhnTNGYXJILR9Zn3U+xZO2allnzBVPKWKvXN1BrCwMsw==" From 441bd252f793cfbc87a26edcc821abc735f72039 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Jul 2020 14:18:58 +0200 Subject: [PATCH 200/356] Adding user Loial --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Loial.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Loial.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 26327d3e..d2b6732c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -251,3 +251,4 @@ - include: users/Kymonlucky.yml - include: users/core.yml - include: users/mirsella.yml +- include: users/Loial.yml diff --git a/roles/shell/tasks/users/Loial.yml b/roles/shell/tasks/users/Loial.yml new file mode 100644 index 00000000..2bdfab4c --- /dev/null +++ b/roles/shell/tasks/users/Loial.yml @@ -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" From b0cec95e79aee811d0d8f38147f9a799c64f6106 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Jul 2020 14:20:55 +0200 Subject: [PATCH 201/356] Adding user beneskiwik --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/beneskiwik.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/beneskiwik.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d2b6732c..56c24f8b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -252,3 +252,4 @@ - include: users/core.yml - include: users/mirsella.yml - include: users/Loial.yml +- include: users/beneskiwik.yml diff --git a/roles/shell/tasks/users/beneskiwik.yml b/roles/shell/tasks/users/beneskiwik.yml new file mode 100644 index 00000000..b14ddb0b --- /dev/null +++ b/roles/shell/tasks/users/beneskiwik.yml @@ -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" From a768620a0f1c300087eecf7fc7e517d76f0ae398 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 14 Jul 2020 18:36:10 -0400 Subject: [PATCH 202/356] Remove clang because it prevents the playbook from running --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 17b21e50..5e9d8b88 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -72,7 +72,7 @@ - bzflag-server - ca-certificates-mono - caca-utils - - clang +# - clang - cloc - cmake - cmark From 5c99131a5dcd597c70dd540e98034dacef926c56 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 15 Jul 2020 23:22:05 +0200 Subject: [PATCH 203/356] Adding user nikto --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/nikto.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/nikto.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 56c24f8b..c810389c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -253,3 +253,4 @@ - include: users/mirsella.yml - include: users/Loial.yml - include: users/beneskiwik.yml +- include: users/nikto.yml diff --git a/roles/shell/tasks/users/nikto.yml b/roles/shell/tasks/users/nikto.yml new file mode 100644 index 00000000..8aef5340 --- /dev/null +++ b/roles/shell/tasks/users/nikto.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up nikto + user: + name: nikto + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/nikto +- authorized_key: + user: nikto + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDqlMPguB4Qmx5QTqMP2KXQ9bGGiJyBEWTQ7L6kD765c3cWoJQcjV5ttsNgEh65Y2pC/Cxe72l+Bl7SmPoV7egBIYymEmLvBggKuImG50mD+JFoOSvuxit3c1NjKutREBmdOVb8aXDAW7waLBtFya9WZ2CsOHwN4w6BLmcu5BUecby8ic2e+qw8Msvs8ErtDZsmgRWL7d0yF+lZgMLVIkgnx7FXbrrTJTVA2ly+wwvmkelJ5fpXQ2jmsmQr7nu5L+GdOR5AN0JaE0duS2+xfsGVvRagFDUggL6EL0+NlTa1kW1mH39As4ek+VnSa0pn/IasOYiktOakWbWeDSM6/Mw1z6Py90hnmLa2D0dAzkVIhwM74YiFfTfpQ2KxirZzoz8u+QhDgV8EN+joE0cxfQsNeDJUv0WDsYjtFJtgd1JMtiiAexd0Eto5Vv/w9hqs7cgxOhnGUPQ2TL71jZLENLXWqfOFu31hUVAvoxsBpkVJyV5sxlt8YeA0rTJDi7c/t/U= nikto@nikto-x" From cd812176988a85e756bbba19f972e733894e27a2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 15 Jul 2020 23:23:58 +0200 Subject: [PATCH 204/356] Adding user seerlite --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/seerlite.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/seerlite.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c810389c..e4ed506e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -254,3 +254,4 @@ - include: users/Loial.yml - include: users/beneskiwik.yml - include: users/nikto.yml +- include: users/seerlite.yml diff --git a/roles/shell/tasks/users/seerlite.yml b/roles/shell/tasks/users/seerlite.yml new file mode 100644 index 00000000..f33e7bde --- /dev/null +++ b/roles/shell/tasks/users/seerlite.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up seerlite + user: + name: seerlite + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/seerlite +- authorized_key: + user: seerlite + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMiFzw1p6xbVkrUMBXjG6IQB9thhTZzDLFMf4exqbmJb seerlite@quote-ii" From ba21e6ab9d8376fb247bd744fe2dbf18a48049e7 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 17 Jul 2020 23:39:34 +0200 Subject: [PATCH 205/356] Adding user nikita --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/nikita.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/nikita.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e4ed506e..012fd695 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -255,3 +255,4 @@ - include: users/beneskiwik.yml - include: users/nikto.yml - include: users/seerlite.yml +- include: users/nikita.yml diff --git a/roles/shell/tasks/users/nikita.yml b/roles/shell/tasks/users/nikita.yml new file mode 100644 index 00000000..52e880ca --- /dev/null +++ b/roles/shell/tasks/users/nikita.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up nikita + user: + name: nikita + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/nikita +- authorized_key: + user: nikita + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC6O5CxTkf83kta6jaaVvskpPy0H9iTmHj8E72CwXWjQivVhD0pI61UA3Q3lON+8tTMp/kyUGPuNeBXYNENUJAfbvPeHm6S7Ihzlm/5ieMmjPTJgnr7KpWQNREpgD3Vlwl0Fg4PonSWm8ZwTY+cyPZ/s6BOtWubmRPN+DmXnyDAEyzEEjefP8/P16X6AvaAovCrsXTY+OdVxwi9EGF49oGf8IoNTUbwTCivsfNxQty6UqG3NZS96re4MoySGCsSNABmS4wu13JezNiwsBzbBf6nDo/b9LC/ACxzvaQ7Rr47iyhaH5OgJEfijaW+59Pteb+noMna0+gpJQNod3vi+og4cCOxCo+nxSO4OByPC0N0LkpTD2l7UxWqXgWk+KGP1733OSUxtM9fyK+U+xjd0chhrpYbFM2EF0gzgO7opC7itDBYd66VXQerM/DVNMnO3Fl8prh9NER6Qt2dpQa11H6S+gWIesIPscaq9U3+5hzCK1CXPiFImKVo0xW1RyYgbM504dNvavdQeYOg1iRhwBtcQpxXYQvItUIA/cBF78biJXzUMG2Kv7JSjxb3e8Fkh3jlJRdV6u8JkhF3nosQH9CrvIhCH6VCQgFv4lxZg6eL4F6Pr6CBlY7kdDSQ8xcgBsE9MYj04mXQzyns1PZ6FsBB6r8aSP199NBLUEl9Hg22OQ== nikita@yevdokimov" From bc98bbf09e4e6f43a8c91ec982e1a3510f31513c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 17 Jul 2020 23:41:04 +0200 Subject: [PATCH 206/356] Adding user pokemongo --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/pokemongo.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/pokemongo.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 012fd695..1546aa5b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -256,3 +256,4 @@ - include: users/nikto.yml - include: users/seerlite.yml - include: users/nikita.yml +- include: users/pokemongo.yml diff --git a/roles/shell/tasks/users/pokemongo.yml b/roles/shell/tasks/users/pokemongo.yml new file mode 100644 index 00000000..b5b8e7d0 --- /dev/null +++ b/roles/shell/tasks/users/pokemongo.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up pokemongo + user: + name: pokemongo + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/pokemongo +- authorized_key: + user: pokemongo + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEobS5Ey+EkO0iaiQS/1bPJr5chysBpUl8Evp+lD9wud5YJAv4FCjOUfCx7j8blJXTQTNoyMC8h0oSAuF7I4qNN4D2st4YM2mjEfzNHfcpzSPdY2pSZiDBBfaWWQO5qYXyamIE8Eic5j0/yKjsmZuWwGYdI6Qx/uXGFldiUYypjbW1/cqvyou43AgxaOIXQxLbubDsuaIBM8IDsd5aCBEwzgm0ZaX2RyCsNxz+DEYGod0kzKSPHLhoABvrOOy88CqnEKgQrwMFZU8WLynpdB2WmpeKS7rcyNrS1jqs0t2cbE4IR/XgVLGj4TDXHV8HmWr3DPTOG/ugVI7yqRIzxA7V" From 08173d378b682593d140e5343f16e922c6d2dfde Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 17 Jul 2020 23:42:10 +0200 Subject: [PATCH 207/356] Adding user prashantch --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/prashantch.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/prashantch.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 1546aa5b..493748b2 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -257,3 +257,4 @@ - include: users/seerlite.yml - include: users/nikita.yml - include: users/pokemongo.yml +- include: users/prashantch.yml diff --git a/roles/shell/tasks/users/prashantch.yml b/roles/shell/tasks/users/prashantch.yml new file mode 100644 index 00000000..87809a55 --- /dev/null +++ b/roles/shell/tasks/users/prashantch.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up prashantch + user: + name: prashantch + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/prashantch +- authorized_key: + user: prashantch + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC/dFbUzaWCYYhV0W0GkKFI+uGrLHpXuf9/8/1M787YGX25uQZPzHuitzmMBi3GloH+Mi3ZFw0Kg/Pfn+9UXYn0XaXDVpp4rFSiWzvIeu168maa96oFCwTDNyFnm9SOIimoqB+EhVxOs7qRUDJM11M+9K6NUXzob0TQau/s7TFK7wl2LHSlmBFH88gif3KVzYLwLT5eV0+Ib4YcRyR4+HJs+5NVI4oU80wVLwkjRHwWAJ8v04PjLEvOyCFsZCsCHCP8lE2w+Md+UNHU43LrqU9saLSh4ggJnW/wO2DqpgF9v9UrWQCQm04DlJVrTCHtSaJYGmS0gfS83b/P5Dqb1/Kl" From a561168e60585091f8c27aa4c18156f2e0bf9d5d Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sun, 19 Jul 2020 16:18:06 -0400 Subject: [PATCH 208/356] Post maintenance cleanup --- roles/common/tasks/packages.yml | 4 ++-- roles/shell/tasks/packages.yml | 26 +++++++++++++------------- roles/webserver/tasks/packages.yml | 12 ++++++------ 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index dab9f697..15ef0cac 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -42,9 +42,9 @@ - python-jinja2 - python-kerberos - python-markupsafe - - python-netaddr +# - python-netaddr - python-paramiko - - python-pip +# - python-pip - python-pymysql - python-selinux - python-xmltodict diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 5e9d8b88..e1345906 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -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,15 +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 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: @@ -72,7 +72,7 @@ - bzflag-server - ca-certificates-mono - caca-utils -# - clang + - clang - cloc - cmake - cmark @@ -194,13 +194,13 @@ - 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 @@ -209,7 +209,7 @@ - python - python-certbot-apache - python-flask - - python-pip +# - python-pip # - python-potr - python-twisted - python3 diff --git a/roles/webserver/tasks/packages.yml b/roles/webserver/tasks/packages.yml index 94a915a8..a84d462a 100644 --- a/roles/webserver/tasks/packages.yml +++ b/roles/webserver/tasks/packages.yml @@ -7,14 +7,14 @@ - name: Add tor project repo apt_repository: - repo: 'deb https://deb.torproject.org/torproject.org buster main' + repo: 'deb https://deb.torproject.org/torproject.org bullseye main' state: present filename: tor update_cache: yes - name: Add tor project repo apt_repository: - repo: 'deb-src https://deb.torproject.org/torproject.org buster main' + repo: 'deb-src https://deb.torproject.org/torproject.org bullseye main' state: present filename: torsrc update_cache: yes @@ -27,7 +27,7 @@ vars: packages: - apache2 - - createrepo +# - createrepo - dpkg-dev # - gophernicus - mariadb-client @@ -43,11 +43,11 @@ - php-intl - php-mysql - php-pspell - - php-recode +# - php-recode - php-sqlite3 - php-tidy - php-xmlrpc - - php7.3-xsl +# - php7.3-xsl - tor - torsocks - - yum-utils +# - yum-utils From 2b9df69c7de75c58560c7d60d627152da931eb86 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 21 Jul 2020 13:14:52 -0400 Subject: [PATCH 209/356] rm igor --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 493748b2..2667162d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -241,7 +241,7 @@ - include: users/farooqkz.yml - include: users/hellspawn.yml - include: users/kuldar.yml -- include: users/igor.yml +#- include: users/igor.yml - include: users/randocontent.yml - include: users/chris.yml - include: users/Cropt0.yml From 66efc8885c6e156d2154e6958ce665e4c11df17a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 4 Aug 2020 21:57:22 +0200 Subject: [PATCH 210/356] Adding user Xiboon --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Xiboon.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Xiboon.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 493748b2..f7790ac3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -258,3 +258,4 @@ - include: users/nikita.yml - include: users/pokemongo.yml - include: users/prashantch.yml +- include: users/Xiboon.yml diff --git a/roles/shell/tasks/users/Xiboon.yml b/roles/shell/tasks/users/Xiboon.yml new file mode 100644 index 00000000..cc6580b7 --- /dev/null +++ b/roles/shell/tasks/users/Xiboon.yml @@ -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" From 2b79376a336d49c91c4b0e61e94e7f6a71147fae Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 4 Aug 2020 21:58:31 +0200 Subject: [PATCH 211/356] Adding user Index --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Index.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Index.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f7790ac3..76ceaaba 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -259,3 +259,4 @@ - include: users/pokemongo.yml - include: users/prashantch.yml - include: users/Xiboon.yml +- include: users/Index.yml diff --git a/roles/shell/tasks/users/Index.yml b/roles/shell/tasks/users/Index.yml new file mode 100644 index 00000000..5cfd1ecb --- /dev/null +++ b/roles/shell/tasks/users/Index.yml @@ -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" From ef18ad3ca4afa098395062cf81da49f420f94c17 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 4 Aug 2020 22:04:02 +0200 Subject: [PATCH 212/356] Adding user rolkoz --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/rolkoz.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/rolkoz.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 76ceaaba..3bb13c2a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -260,3 +260,4 @@ - include: users/prashantch.yml - include: users/Xiboon.yml - include: users/Index.yml +- include: users/rolkoz.yml diff --git a/roles/shell/tasks/users/rolkoz.yml b/roles/shell/tasks/users/rolkoz.yml new file mode 100644 index 00000000..63dcb305 --- /dev/null +++ b/roles/shell/tasks/users/rolkoz.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up rolkoz + user: + name: rolkoz + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/rolkoz +- authorized_key: + user: rolkoz + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEApMDMYvuzB3Xpc3hNycOqR6RYEChTUILB0y1ezHeVv7uyVhL6EW8ZrdNPa3H+5O842KcTZxfFWS4hGp/f5pLFfcoZY5Ny77nULBU8yv6P9/4er4QKrAAA7aMy3/+Hk+fRSZpFYsfIYiHBJM+700UjJDAllwp0U4OvUHgO41v7DqyNCvzFIvGIrXL/o7aVhxZfg8cPMitiQaVexhDEkk6YqzNWEkkQoX6tPx5Z/xZy0/i7ca8RU07bSo1Hj1VO/mVtDacvlMcGbDwAcUiWyBp3x6lgnLSU/JMTa3fI1scpFzs8NpMbXCHDjVGBBHe4BWnAhfC8RP15XhySugsG1qrDaQ== rsa-key-20200802" From 6b6c2855d77b7e6398db0652b345b122a275db88 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 4 Aug 2020 22:05:22 +0200 Subject: [PATCH 213/356] Adding user kjotere --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/kjotere.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/kjotere.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 3bb13c2a..26990dd1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -261,3 +261,4 @@ - include: users/Xiboon.yml - include: users/Index.yml - include: users/rolkoz.yml +- include: users/kjotere.yml diff --git a/roles/shell/tasks/users/kjotere.yml b/roles/shell/tasks/users/kjotere.yml new file mode 100644 index 00000000..3d05024b --- /dev/null +++ b/roles/shell/tasks/users/kjotere.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up kjotere + user: + name: kjotere + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/kjotere +- authorized_key: + user: kjotere + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/++VSrTRXu4FMOnrqWHVwr2jt8gXu7OZi/dHBD9ZdH4UqajAljruY0m0cIInKYucok6cQIKYHo1LCepDOAHDYrlL7vsf+nhmMOCxu0IsiYpEZ6BkOlu4znWaCm/yDMaDf9Iqdzr9WqKh3ocCHY1N4ND6pr38F4apBnyak5Ngd1JGvfeyXKG/QVPHT4tol90z+wAxeT7hYVJ0HcxJov41lC20xh5TMSiGnvP3bLwZ3kLSvvSYxka7nHPXoclPC7w7dZLQWH5sWPfDge8+pcaOF3FepT/rapVwA68b0C3J2yQQVcOUnTOUaMglM9IpZsFpDvWEh8gwuJOf1KXMnP2ZTNYQdkzCm20JcEin9xBoOs+LuwqqEUI9lEo2aXMWLQ17BYzJ7j66rd8VygRx4Xu/Db0PxTD8Xbdmmp6WQYcMAlrt9RJ1EBaM/dY19vlFd7Afowu1HouyhBZ/vqRmAUdYWBqKLG5Fyp0qh2pcLpWyKAG21GkdOxsU8wwp0g6N3kJs=" From d6a6585c98d1ba974f25179329666feb7bbc9707 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 12 Aug 2020 12:54:02 +0200 Subject: [PATCH 214/356] Adding user linkzyzprophet --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/linkzyzprophet.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/linkzyzprophet.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 26990dd1..e67e7e66 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -262,3 +262,4 @@ - include: users/Index.yml - include: users/rolkoz.yml - include: users/kjotere.yml +- include: users/linkzyzprophet.yml diff --git a/roles/shell/tasks/users/linkzyzprophet.yml b/roles/shell/tasks/users/linkzyzprophet.yml new file mode 100644 index 00000000..ab2955e6 --- /dev/null +++ b/roles/shell/tasks/users/linkzyzprophet.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up linkzyzprophet + user: + name: linkzyzprophet + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/linkzyzprophet +- authorized_key: + user: linkzyzprophet + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAxJYvIstr6/94lAE/JLGggfc/witODuWr27EhYjaTHut9ZHNDUBDPeYmSGQCkRKK8lD/e9X+/XX85M4GO7qKAgFv6iQAvX/ypk1JeFwNjg4l0RJi3apkEo9KyeyyaLw5XDKrxsJuN1f5cEFTc/FPH7kA6aLCPn3Ppk2VV41ElvxuaIyzxYrPEgEHV2TpMu/wu6KtTpEpq65vYbSGOgvJlllhj+qTQTSDlcduWpROqQmu0VOmaeZNETrToxk94r3Pyr9wV++jsBTVI0VOmcgpiPLV1D0wK+UhLETwFwtN8d48WaAgjhE2u6VEc6UwP12Vl6aMPxcPbAycLm8CB2Shs9w== rsa-key-20200811" From df226123b6b08f69f3854e4224dc856ec4cb6c55 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 14 Aug 2020 18:52:43 +0200 Subject: [PATCH 215/356] to change public key on request --- roles/shell/tasks/users/linkzyzprophet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/linkzyzprophet.yml b/roles/shell/tasks/users/linkzyzprophet.yml index ab2955e6..8818a657 100644 --- a/roles/shell/tasks/users/linkzyzprophet.yml +++ b/roles/shell/tasks/users/linkzyzprophet.yml @@ -12,4 +12,4 @@ - authorized_key: user: linkzyzprophet state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAxJYvIstr6/94lAE/JLGggfc/witODuWr27EhYjaTHut9ZHNDUBDPeYmSGQCkRKK8lD/e9X+/XX85M4GO7qKAgFv6iQAvX/ypk1JeFwNjg4l0RJi3apkEo9KyeyyaLw5XDKrxsJuN1f5cEFTc/FPH7kA6aLCPn3Ppk2VV41ElvxuaIyzxYrPEgEHV2TpMu/wu6KtTpEpq65vYbSGOgvJlllhj+qTQTSDlcduWpROqQmu0VOmaeZNETrToxk94r3Pyr9wV++jsBTVI0VOmcgpiPLV1D0wK+UhLETwFwtN8d48WaAgjhE2u6VEc6UwP12Vl6aMPxcPbAycLm8CB2Shs9w== rsa-key-20200811" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAv3FS7KvfLGPT8HD/CangIE2b/rEYcEN7n3uPpEfbaJglQY6v0kfI2kvj0Gbz+AdMlFbpu7EX8z9rJarXsMO1+3aUVXDJoZikMO3HMkoHDsQRt9fFvTGXWMy0JkzdmGzS35EMt5ochRfdilqQXekJ3FIbFfzbqUdWu4hgP57/EZjxLlQgR/JhH7d0dnBlaw0MHjx8BpiLtq0gI72cl7G9i7Os8AUYbhBibqVDITocB7WbK+aIbgcoCJA5GzkgnE30chd1c15vm9bGZQFfOmw6VXLDM0RXPJwCjuO94c5l0sfXqSYg3rzqpqnvfGzxP9jm1myLnzwkP14BhgDOeQzz0Q== rsa-key-20200814" From bf1a8deec9e1b880930114388ad49727d5bfa04c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 15 Aug 2020 01:53:22 +0200 Subject: [PATCH 216/356] Adding user computertech --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/computertech.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/computertech.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e67e7e66..2513d53a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -263,3 +263,4 @@ - include: users/rolkoz.yml - include: users/kjotere.yml - include: users/linkzyzprophet.yml +- include: users/computertech.yml diff --git a/roles/shell/tasks/users/computertech.yml b/roles/shell/tasks/users/computertech.yml new file mode 100644 index 00000000..984a8524 --- /dev/null +++ b/roles/shell/tasks/users/computertech.yml @@ -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 AAAAB3NzaC1yc2EAAAABJQAAAQEAlywR+GXWaNMO/jPcGj8Rv+xHhNHW62IX9y1eH1TV8x1S4auEAX4iPyXjqiNJH6NQuaxm+wyxMMjwaYyZkRoqDF28aI8RUqjnBBsZ7pkdLUGfu5KR2t/fu05ABMM40AI4wyBoO7QwsNr1/17iEcZD7p/kOP3IJlfMno/+bXQkGcB+fI9PtAgfZK3/UFFgggcnvFBrHGf79XmfisPblMy76BDhvXlPU1q/ecW2RYfZ7dnnGHhVH1EhddD2ibM0oNoqtyRmYnq6++gfvh3RM4VJf6IfCfErO3hOJ3bmaD/VhMvgH6ddf7HsIMOV9vgiDo3o6hPbsGEsw/ffU5KeqgSFow==" From d9f06e86df6b3c349e40b438cdbdedfb11f8d906 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 17 Aug 2020 23:57:52 +0200 Subject: [PATCH 217/356] Adding user spockandprosper --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/spockandprosper.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/spockandprosper.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 2513d53a..a58b8f08 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -264,3 +264,4 @@ - include: users/kjotere.yml - include: users/linkzyzprophet.yml - include: users/computertech.yml +- include: users/spockandprosper.yml diff --git a/roles/shell/tasks/users/spockandprosper.yml b/roles/shell/tasks/users/spockandprosper.yml new file mode 100644 index 00000000..7107fb29 --- /dev/null +++ b/roles/shell/tasks/users/spockandprosper.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up spockandprosper + user: + name: spockandprosper + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/spockandprosper +- authorized_key: + user: spockandprosper + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAgCF0tang1Li8oYntwzpFZpJTfaQtzygrNKZCD1kSF0+UHL68she5xIUFK1aDXUt/fShDLMeWkrw8WNj0A01WF7C1kxSDPyeVwmieQrP1Y6SycyRThvwsavx4G3UsqSgPkPSQOBgUc445yZk5rgGCFhMZ9jpv4xbozdByNVdaiqpt1kZNmf9dvKrkfQ7j8Hw68icC5jAZB9TovUbBT+jAD+35YmwxYSfbR7+2IiCfkoFzm2I8Xih/FXHV31x0hwk59mv4tXoZsvfcENeeAxhvzBCWNPgX7wEreZjBG19/p1lLBMC71MNNJV2vLxnEQS3FXtHS5nqlyi3FcB7YOl+NSw== rsa-key-20200815" From fce1916b411102c8eb56f1fa75774c3dd364bbb1 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 19 Aug 2020 13:39:33 -0400 Subject: [PATCH 218/356] Adding user logan3303 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/logan3303.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/logan3303.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c5a11df5..baa002cf 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -265,3 +265,4 @@ - include: users/linkzyzprophet.yml - include: users/computertech.yml - include: users/spockandprosper.yml +- include: users/logan3303.yml diff --git a/roles/shell/tasks/users/logan3303.yml b/roles/shell/tasks/users/logan3303.yml new file mode 100644 index 00000000..c67dc860 --- /dev/null +++ b/roles/shell/tasks/users/logan3303.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up logan3303 + user: + name: logan3303 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/logan3303 +- authorized_key: + user: logan3303 + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC6TyXbjJK6ZFoBZCHWnx9Su1hKCmXPfyc+sIeLgi6OMdTInKT8k2iu+e22mHvVHPVaDlwX+NzqqFw1xwiVM48D4v6cPLuUsq6TghZ4n5pnigCh42rBOVPx48YppSHEdiNm3dOHMr4Sv9SlU32mpCl1LqjfRII1ayIspxOLUQc2ULpl7i+ePveDbbSlvhnz3iEmfk8geT2TThHMKuDHLjnzki8Yw6184Yh75ni3v2o8ltaUhz42nggo0AF1mierNkFLf7ROrgS3o/KIN5e1zc4tiGHpJarwtfqIqCbNNR0RVj1Gw4w9DO+Q/z1MOhs8zbOpJtX46J7dIHsZPEziK9JN7tYKzvxNEVzez4qCdv7KhdiX5F2GvWoSag0tNG0rl5wWL5egPiXVo+Rd6Pkcpta6QFoenJB5xaNgywa03bmFoPazoUaRbF3JqoINlDpabIbMTOGclVJwOykb8ac6Hqw134hiojHlqIY8OnM96Wte/hp1ehPaFyrZhoV7/eWqXyZWR7bJoc71nuuVL5R1+g7joG+vfjMVj5zMBRmdnN+tEb1t+BIcqIVVZzH2USDVI0Mx8mwna0/9SVWlxwum3tLpRkUn6aWUIcEH4wtMNLQ02SHjtQgiy8nm3giB1yB6PfNmyzUr6YSlPv5bW53hUHM1thlO/DdZuT+PHpRX8V3ruQ==" From e6587890166c18cb7146fc7e724322f23766dd98 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 24 Aug 2020 12:02:54 +0200 Subject: [PATCH 219/356] Adding user poweruser --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/poweruser.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/poweruser.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index baa002cf..60110c31 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -266,3 +266,4 @@ - include: users/computertech.yml - include: users/spockandprosper.yml - include: users/logan3303.yml +- include: users/poweruser.yml diff --git a/roles/shell/tasks/users/poweruser.yml b/roles/shell/tasks/users/poweruser.yml new file mode 100644 index 00000000..f2be6c14 --- /dev/null +++ b/roles/shell/tasks/users/poweruser.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up poweruser + user: + name: poweruser + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/poweruser +- authorized_key: + user: poweruser + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDCVvwywROuGP7+WaCOhJuaWiECU+8oR+M6DSl/CMxBunKyH/uDSENMoqhRLD1k6ZPaGUy1PqNnlNbjdr1Y4NurGZJ1ZTb6O22zjnSefc4XJ+A6J45eepy+qnaQouyqG3itgAw47vveGTfGVNuazY+0IDsnffsKFvy3fztiEHnPCJRWPMqfGj2SSWGw5pZ/wbq7D6ACAqVti+kZHM7kIft7c00BLnN+tu5A/8VKm3NuuhIZh4D6R69lpz/U2jAoqIblbWqlEQndwFY/NKNzcK+ffrVIRfmpz5JCbY0jJLYcWkx0SbvKCKOoDA4L0DvtWbYwwvm/ccQwf/43T04xfqLb" From 0b0d63e195397206289fb6e239d4db6beacc2d3a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 24 Aug 2020 12:04:34 +0200 Subject: [PATCH 220/356] Adding user hyperreal --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/hyperreal.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/hyperreal.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 60110c31..957eb1c2 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -267,3 +267,4 @@ - include: users/spockandprosper.yml - include: users/logan3303.yml - include: users/poweruser.yml +- include: users/hyperreal.yml diff --git a/roles/shell/tasks/users/hyperreal.yml b/roles/shell/tasks/users/hyperreal.yml new file mode 100644 index 00000000..3e84b1ca --- /dev/null +++ b/roles/shell/tasks/users/hyperreal.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up hyperreal + user: + name: hyperreal + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/hyperreal +- authorized_key: + user: hyperreal + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCiTlsMT4NotOaxgsxdHAuX8pzgL1CQxjdmwUZw7bTlIuezX44Txa/ayMSzzdY9XEvG8ttZPVLVFqjFigYZjaXlbPcS2HOTwCjry7SfrIWd7xroPl+TmOZiVBhmLOiu2/eO5w7w0qQVEG4MS9DAk5Aq6/gEnhWYtuPc9ACU9XVUjGCTqzJWdg3ZIoDVe/3FlSYO4X7tAswaCzr0xrjdmae0OgHk6wfuiGHF6vOpzptYvjeBfddJLnI6dz74R496O0SczHNLI2cQTE47fvuqL8Hx7sEAU5RRdgQ0kj4tfiaOOPZ3JZqkrlx4MIoroLSx/yCvZoG8C9pmI4nuj8VRtyhWWFWXK/hEgx83SeeJaaH9Qv3aHgX3p4JtzeaOXzQAfbm7iIB0VGulSZ7AGVtmb36ous1IdtFaSwSPJSlnezrS7ldkoCv7+Wv3DLmycdsk9TAYFJOFYb0r2PdcDL7hhhtQlXKkOej5E72eJ9EgmgOxYfRaWcUmfB19cf3zlEnT5t0= jas@episteme" From ad23072b4ae65c8bcab915fb9cc1f42aa90c65f2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 26 Aug 2020 23:52:15 +0200 Subject: [PATCH 221/356] Adding user raven --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/raven.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/raven.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 957eb1c2..8aacf4ba 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -268,3 +268,4 @@ - include: users/logan3303.yml - include: users/poweruser.yml - include: users/hyperreal.yml +- include: users/raven.yml diff --git a/roles/shell/tasks/users/raven.yml b/roles/shell/tasks/users/raven.yml new file mode 100644 index 00000000..e954caa7 --- /dev/null +++ b/roles/shell/tasks/users/raven.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up raven + user: + name: raven + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/raven +- authorized_key: + user: raven + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC8Cfu3K/ZAiQkh+th8Uoz73CrVLLcgVMEo1eB7asu4BPx/sWJQYRSCg30v99rmjznRvO33S0E6GSGFPvT6KKmNzWdPxEYE7wFUwqVFxQDie+bWensUj8cnOCqCZyG2LC9Qj6eY7ETRvUDooBVpg5urkzG6wFTpH7yyHqRZpHs3rc+fee2FZjY+0q+lGlUO/uSX3vGM/lNv30dYZb1MbHA/kzYLHbhe8718C1YHuaX1cK4IW1VwEH4ad0F8ftVGgAKSkpgdjOS82EjP0nR3SPgXJ4sob4s+6r3Q/h49iPV4oQdZrhkIjc3pBZdlA8p37EdPPE4SlzOM0gwgUx0Muls06n3+joqLxXDQOJ/jscQTG0TqDmGF+29ZEfLV4s7aj2e6AQ81Y2RNXsKSMMP66yZlonB7YPDcidoY5gIOO+aZ3WnhDl7aQjTzRi9d6CYCSZnWuothS7Y6POWZmCKU8x/3/LIxFNAwuJSZ7LMmLBs5048/qkuxmQ2n4lrNgd5UxgyCUJuM53VnUgzhbugvIo0kCjgpqN1TcT5fBzCxYQ00qguqH0j60veyajZW7bDbZdFD2+wLR/RO0zjQH869XDAKQ/F+YiboZQp+XahtjeIfBRKS5ve3fxMBGE2DkFxoKogSuKAsgfmcpB6Xam/ndNLGuA4GxsQ6UFzzHElpiL1sJQ==" From 4712ac8427c7fe37dca19634eb4d90980506768b Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 31 Aug 2020 07:10:19 +0200 Subject: [PATCH 222/356] Adding user rany --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/rany.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/rany.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8aacf4ba..d2be2042 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -269,3 +269,4 @@ - include: users/poweruser.yml - include: users/hyperreal.yml - include: users/raven.yml +- include: users/rany.yml diff --git a/roles/shell/tasks/users/rany.yml b/roles/shell/tasks/users/rany.yml new file mode 100644 index 00000000..968af193 --- /dev/null +++ b/roles/shell/tasks/users/rany.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up rany + user: + name: rany + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/rany +- authorized_key: + user: rany + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDvVp5K7eKkiTu5RFF4W3rqeyW6C46iBWPZAdAmj1TkNCM6PN5/cOZc5VvvtO0Ek8bDcHkwmn95fZLKuDjcbJzC1WEatsdwufD7lYqZAlDPJTf4a3WNESr4843pcodY6F3YBpgm+5cSAn6Sg/UZyZp/XC15WTygo4FK6TjdohEuzJRg8QhRbduXyrnrSdqfrK9gkoo3eFjLcEzxnpPbJHW+d8prZ3R5TeXOPQ87AwAJJ3LUMu4DGuz+RVYxCz4PGb+giw3ekOxvuw1Ioksa7z9pCj7qup+z3nEmymSOjUHNURUbTvQEvC9iJEeTn/UqKLTNzSf2TyVXz0/PcfEdE9wmjf3SKN8LPkHskxBMxQf6KhSUNb6qqNIOzgMSiA1gsVkvZfinyJJwIS3CuHpIezKm4FQAy5g7k6NtJ+pRQjr1QBvoGkRPxoompyhzn4GwB1I5gtCI3ntqW8x9nSklzcexGLO6gxSW6WqHJpiGDJ/LcJXNHiMAtIcFHcZnlnWYRVA51sc7cHPk3IOzR68d0Sr4uXx03k4sl0SxUiqMejHbacmvCn/PXNnavHpVZI7fFbsY8Kyy90SPPId6yab6DeDxBfqwjoLZdioPD5v5XQpuYdlUA1wZtPHZ9wK2HdkLmNqmptI7Rr06btTx/ib155lNlGiY++R2ecX3wxBKzOwLhw== thunix" From 8b629e54396d2d4d0d0299157d97e13ca0b2d6dc Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 31 Aug 2020 07:12:41 +0200 Subject: [PATCH 223/356] Adding user tomo --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/tomo.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/tomo.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d2be2042..f854c99d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -270,3 +270,4 @@ - include: users/hyperreal.yml - include: users/raven.yml - include: users/rany.yml +- include: users/tomo.yml diff --git a/roles/shell/tasks/users/tomo.yml b/roles/shell/tasks/users/tomo.yml new file mode 100644 index 00000000..06f5aa58 --- /dev/null +++ b/roles/shell/tasks/users/tomo.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up tomo + user: + name: tomo + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/tomo +- authorized_key: + user: tomo + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDHAX5/IZ9EOnbs3/Byy6kba/2cFQzC08EcNRJrfF9PjJPefjCpZgroNDcNfaoaV4r/wgcjM3uCZEbgGFfq30EwwiSlsVMh+3EDRHA4gRGB5dXDkN9ZdkNCe91vwPoiJkG01sNnJ6T6gOBc82frUY0eSJGPtKvuJUkza0xWS3Jo7616Xl2BpTM9rEmkVKlwpfr4n52IUYXKi/kBExRrom/j0nXavmZm5LH+PQ/d8GODejINhiPcWrqfX6LCoba+OgeT0TpAJNkiPJx+/ZHBkwzmsTALVNKqlkyfeI7hR6dz3OgGvS3Bm+NsDgFbU/oPa9pXVZE9+jJq6D+4McB0S0MpZOI3Hml5iMmSXmMZNwew920aiH6aO2WIJj/J+h4HwSt8ag7rikWab5P0ryuL2ymizuvgYeuARd6Yr7vW/o5Bum8XNkgvNRt/JCGQQ+gldLcvAbX29FrnOAEKxok3P8ARQprlghpVIN0X4eDfFBvIKNJq9MAC5UxLtycVxd/q7B/kMFSZb5RZg26cHPiDFS78zBG/w5ByP+H8xhRfvhGLoZihodAtz5PcxgJZDHY6IfotoP0F19OH1009/1KmIIeX2VBnmnUbrXCW0VmMn1D/FipwVpdkVcb2Nl61jbBN4PhJhrRsJAJqxekRU6bTOMw5KkDrTo+eGYY3W6fvunE9KQ==" From 9ddaef6637e187c5c7bc2de5893769c6d7981b27 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 31 Aug 2020 19:12:14 +0200 Subject: [PATCH 224/356] to change public key on email request --- roles/shell/tasks/users/logique.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/logique.yml b/roles/shell/tasks/users/logique.yml index 6753975e..f06c57be 100644 --- a/roles/shell/tasks/users/logique.yml +++ b/roles/shell/tasks/users/logique.yml @@ -12,4 +12,4 @@ - authorized_key: user: logique state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDceti42bTS93/dmVg/5YSyqIOzSYwAfpxo9R51YFopbqx5m1BM9KJc3M27dIrewAZlq90AwNh8bUZIpFdcqqiz8HmZA1p3mcupXgCHlxhhiAt0/lRGyO2iTiSX/NWbWSw1tUaZDvAmqMNCzMKJ/BUGLENxmxJemH0Qsa2ARjRN2BUEoaJA0/KFoZXen+oGhimELo+SGyrVm0ffFNYe1X0HYyrQ5tamEdvf6EGb9O3tv02lo9Vi/MvgXQjqDsj6mUkm9FbdNVSjiVHBZBQ/Tg31Rfi/ZCcVcwL4T8qPpev8b6Yd72OMK3yvhszPTWqTxHSiQqfNdG1DmnZF2dL4Xnwh DynamiC@DESKTOP-BLSBFNH" \ No newline at end of file + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBle9CeHhydbX5WNboTrt9N0UPrXgqKeMcG9mWoOhofgNaTRHEdM7P9Jn200rN07L8obBTCkIpFLakn6kw1PjcnfWdOfNsroHAFUwokNCZhaXNmE1dVpR9+mrFnj3qpvE2yI+uuckp8Iz7dyQb2uIx7HBY1W3DCVTZVLMOzFaiSLY2OI6h65CibUK5bnBYt+fxZkm5qxse3edH4Tah80orpTjn4P43hNQ9L6xDLaJX9BHWgUpni3DNjIgEVMA0dGzJ86yBdBfVbhfXLSRVmtdbLUp8My0piEBllez1x5bPhWZitagzTfhfyN5C6hy5ZKeJeOxQULLy+W/dl/JJoSo5" From 83fe5300d0673cb1bca751ec1d7d8d0ff6b4a921 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 6 Sep 2020 19:16:07 +0200 Subject: [PATCH 225/356] Spam DNSBL removed, to prevent false-positive --- roles/shell/files/etc/postfix/main.cf | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 7dbfb641..86660aec 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -64,7 +64,6 @@ smtpd_recipient_restrictions = reject_rbl_client bl.fmb.la, reject_rbl_client spam.dnsbl.anonmails.de, 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, From 99caa5cbce98b4d0a2cd8a4deed2a4a189d54657 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 6 Sep 2020 22:53:51 +0200 Subject: [PATCH 226/356] Adding user arthureroberer --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/arthureroberer.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/arthureroberer.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f854c99d..cf8d00c0 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -271,3 +271,4 @@ - include: users/raven.yml - include: users/rany.yml - include: users/tomo.yml +- include: users/arthureroberer.yml diff --git a/roles/shell/tasks/users/arthureroberer.yml b/roles/shell/tasks/users/arthureroberer.yml new file mode 100644 index 00000000..88485e1c --- /dev/null +++ b/roles/shell/tasks/users/arthureroberer.yml @@ -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" From fed37bf920d816dd08f7f5757475c92ce474693a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Sep 2020 04:47:59 +0200 Subject: [PATCH 227/356] Adding DNSBL to smtpd_recipient_restrictions in postfix --- roles/shell/files/etc/postfix/main.cf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 86660aec..7511375c 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -61,6 +61,7 @@ smtpd_recipient_restrictions = reject_unknown_sender_domain, reject_unknown_recipient_domain, check_policy_service unix:private/policyd-spf, + reject_rbl_client spamsources.fabel.dk, reject_rbl_client bl.fmb.la, reject_rbl_client spam.dnsbl.anonmails.de, reject_rbl_client all.spamrats.com, From 6c5138bdba75b8ed15fc636c0a5a7909218b7d2e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Sep 2020 05:31:11 +0200 Subject: [PATCH 228/356] Postfix: specify lists of access restrictions --- roles/shell/files/etc/postfix/main.cf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 7511375c..b40383e0 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -49,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, From b9caa91e6ba07a4e7cc1b7593d2c82cb5529eb32 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Tue, 8 Sep 2020 21:05:55 -0400 Subject: [PATCH 229/356] Adding user snork --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/snork.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/snork.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index cf8d00c0..644e0aae 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -272,3 +272,4 @@ - include: users/rany.yml - include: users/tomo.yml - include: users/arthureroberer.yml +- include: users/snork.yml diff --git a/roles/shell/tasks/users/snork.yml b/roles/shell/tasks/users/snork.yml new file mode 100644 index 00000000..060de798 --- /dev/null +++ b/roles/shell/tasks/users/snork.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up snork + user: + name: snork + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/snork +- authorized_key: + user: snork + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmS37Y4X1Yl0ZGxw0nlcMZRCcSziRajMV+v+q5lvSW45zCoJuRYe0zYM+qSc3ITtqwf9TAjeNXClXRawhoSvvaqFCSPUldGSWcTSSzujLtwFegUdiWkv18EE09j7wXq+QKUz4lg4ioplFvL1mhNBybqU1M4vXFVUiBvBcOfbiXYXWpLCMHnznA7BZHw1Gv8W5hMv8gMbOluqCpm+NN5m1hT2SLUsVKIi6wiQtnYYyrYZ3GIlNdQSs7888j9EolJtics449AWwr9pZCabWF0P7P4oe42Nce2UhWWMOlVfCw/pvQDdgm1NVo0KPXPAkKn+Ncg4Qcx+8lDUqdfdykYvVd 200908_thunix_key" From 03dd61a4e6562c118f48ae6fc4089c6bd023881b Mon Sep 17 00:00:00 2001 From: rany Date: Wed, 9 Sep 2020 19:18:52 +0000 Subject: [PATCH 230/356] Update 'roles/shell/tasks/packages.yml' --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index e1345906..88f2377a 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -140,6 +140,7 @@ - mercurial - mc - mc-data + - micro - midori - minetest-data # - minetest-mod-advspawning From 179865f6d0ca9abfd631612c9f21faeed59a3631 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 14 Sep 2020 23:17:52 +0200 Subject: [PATCH 231/356] Adding user xigoi --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/xigoi.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/xigoi.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 644e0aae..7c0ef807 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -273,3 +273,4 @@ - include: users/tomo.yml - include: users/arthureroberer.yml - include: users/snork.yml +- include: users/xigoi.yml diff --git a/roles/shell/tasks/users/xigoi.yml b/roles/shell/tasks/users/xigoi.yml new file mode 100644 index 00000000..518e7897 --- /dev/null +++ b/roles/shell/tasks/users/xigoi.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up xigoi + user: + name: xigoi + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/xigoi +- authorized_key: + user: xigoi + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCYBowd7OKK9FfVJS6yBd0tUEwggiNETJigQaVeijDqe8tCXSt4Ab+Zt0Qz2kox2xggg8OMbEh7ickL+yVS9CU59zOepJnPv0dB6/b6dRbPandRdu/La+p5aZNaQbbpollatGjtASaoEad+zLyUcMPmHQNSVBcoSbAKN0AGV8ROvDPiHvQ8g0p8VQJrVLVV0w0zokDq5ny0bzfddDrXN6bLA1mB8XeWTd92XD9OB2gJ88r3SsZqWPf0rlIezuK9jd9oBmVcnnNhAgjGmSGPHTWBBNPg7oXTtyECoLyCSm10eTvje2NL5gmIsxWO0gEtVcyXrHQNCBf4N3RG1AC/yEqh4VphfefBzSns4knC/CEGCrWL2Px36A3WiYckDOKFeXD9sTeJIeXAfYF8frGF2kIz5kSRMaVuaILsfmwamxTiwAXxQ3RjRh4z6aoKh3GDUKEysfdsj0/R8Tds7CHgXzD1/lB7wYs/b5LuzhjJoM+5sD/g4c9WODvPRRA4+l32Hgla3Tzjyd9DUpawFd3iZQ3dbKEnQCsnokqqJ+Re1qAVjO11q5qwTHAmTvV346PX80ZQtcR/4SLBt8fVUdyMKBXjbzehcx9OfNCMFOnb5F4eM5Mr4vIai5cYRA4HtIlhSFsxgl7cFkHfEchfCT2cJKPz7j+FCFZAytCkm3ugoUDipQ==" From 5f11b8acab69bfe907778e95279bcb029d005eeb Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 17 Sep 2020 23:38:18 +0200 Subject: [PATCH 232/356] Adding user subhadra --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/subhadra.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/subhadra.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7c0ef807..e200a3bc 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -274,3 +274,4 @@ - include: users/arthureroberer.yml - include: users/snork.yml - include: users/xigoi.yml +- include: users/subhadra.yml diff --git a/roles/shell/tasks/users/subhadra.yml b/roles/shell/tasks/users/subhadra.yml new file mode 100644 index 00000000..04aa70ec --- /dev/null +++ b/roles/shell/tasks/users/subhadra.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up subhadra + user: + name: subhadra + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/subhadra +- authorized_key: + user: subhadra + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1kso/6SQ04Y0RMIaHns1uht9IrEKanWZdAYF88izyxZmpeGDS4hkOhjBVrhT7YUr4OczhqOT95xHPgrHOalsyL56Xqz4ytNZKI45LqjwK4NVU4jCMjdH/dqxEvOotsY9a2hHAdWeqfh/TwNTC5bNKSudfaygx2ie/fEueVfB1FwLHFIuCcVXwLowR9AfXdDfKV8VzKowkWQi9DFq4evUEQZTti157m3RD3CbkOF3VRMZUNdCGl31nO3ecoUzH/eU83lZYjds9KIgmwRXzt/Ifl6HNusI4PDqhaqRqulpWMsM5MdgawYhZpXnzHCwGFj9pQmnQsSB9vXDMgwCUIaPL" From cf640d2c756365bc1c6417c852fc24d827607772 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 18 Sep 2020 13:00:11 +0200 Subject: [PATCH 233/356] Certificate path update --- .../files/etc/letsencrypt/renewal-hooks/update-znc.pem | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem index c884dc3b..89bfc968 100755 --- a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem +++ b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem @@ -1,10 +1,10 @@ #!/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 From 11f0ae5bebfbf448e883488703f2e08b8b2baab8 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 18 Sep 2020 13:29:57 +0200 Subject: [PATCH 234/356] Concatenate the 2 files together --- .../shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem | 4 +--- roles/shell/tasks/znc.yml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem index 89bfc968..49e210c7 100755 --- a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem +++ b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem @@ -4,7 +4,5 @@ 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/$DOMAIN/privkey.pem > $ZNCPEM -cat /etc/letsencrypt/live/$DOMAIN/fullchain.pem >> $ZNCPEM +cat /etc/letsencrypt/live/$DOMAIN/{privkey,fullchain}.pem > $ZNCPEM diff --git a/roles/shell/tasks/znc.yml b/roles/shell/tasks/znc.yml index d5e782ff..82397290 100644 --- a/roles/shell/tasks/znc.yml +++ b/roles/shell/tasks/znc.yml @@ -57,4 +57,4 @@ dest: /etc/letsencrypt/renewal-hooks/update-znc.pem owner: root group: root - mode: 755 + mode: 0755 From ae6faaa71d8ae254798b77c53a067faebb02c567 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 18 Sep 2020 13:44:05 +0200 Subject: [PATCH 235/356] Better one by one --- roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem index 49e210c7..7ac930e6 100755 --- a/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem +++ b/roles/shell/files/etc/letsencrypt/renewal-hooks/update-znc.pem @@ -5,4 +5,5 @@ DOMAIN="deb.thunix.net" ZNCPEM=/var/lib/znc/znc.pem echo "Updating znc.pem Before ZNC 1.7" -cat /etc/letsencrypt/live/$DOMAIN/{privkey,fullchain}.pem > $ZNCPEM +cat /etc/letsencrypt/live/$DOMAIN/privkey.pem > $ZNCPEM +cat /etc/letsencrypt/live/$DOMAIN/fullchain.pem >> $ZNCPEM From 000bb9c8c4fc74a1570fc954198611a276d8beba Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 24 Sep 2020 10:31:51 +0200 Subject: [PATCH 236/356] Adding user vgk --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/vgk.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e200a3bc..b3a40ee1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -275,3 +275,4 @@ - include: users/snork.yml - include: users/xigoi.yml - include: users/subhadra.yml +- include: users/vgk.yml diff --git a/roles/shell/tasks/users/vgk.yml b/roles/shell/tasks/users/vgk.yml index 3eec760a..2b205c55 100644 --- a/roles/shell/tasks/users/vgk.yml +++ b/roles/shell/tasks/users/vgk.yml @@ -1,5 +1,5 @@ --- -- name: Setting up vgk +- name: Setting up vgk user: name: vgk groups: tilde @@ -12,4 +12,4 @@ - authorized_key: user: vgk state: present - key: "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBAeeIoSAdzpBzC/ZHphm5IIVYU2yHaONSvrMUm9xqn+jGnbK9iJaAENCvZIFI22AbIwwKb5tpDjKTdtkWHRZ7WU= ~vgk" + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMF2F2ayjAH3sNNL0ja9w2vycForCSVb1brLWSuSQheq ~vgk" From 184059e49246fcab49cdfbf323b3851363a463ef Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 28 Sep 2020 23:02:46 +0200 Subject: [PATCH 237/356] Adding user GreenEyedFury --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/GreenEyedFury.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/GreenEyedFury.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index b3a40ee1..309f08bb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -276,3 +276,4 @@ - include: users/xigoi.yml - include: users/subhadra.yml - include: users/vgk.yml +- include: users/GreenEyedFury.yml diff --git a/roles/shell/tasks/users/GreenEyedFury.yml b/roles/shell/tasks/users/GreenEyedFury.yml new file mode 100644 index 00000000..baeb1018 --- /dev/null +++ b/roles/shell/tasks/users/GreenEyedFury.yml @@ -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" From 93f677f6c27e5b719078c31d83b03cd82f6fc706 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 1 Oct 2020 22:16:57 +0200 Subject: [PATCH 238/356] Adding user angelmage --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/angelmage.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/angelmage.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 309f08bb..6e8ee47b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -277,3 +277,4 @@ - include: users/subhadra.yml - include: users/vgk.yml - include: users/GreenEyedFury.yml +- include: users/angelmage.yml diff --git a/roles/shell/tasks/users/angelmage.yml b/roles/shell/tasks/users/angelmage.yml new file mode 100644 index 00000000..c19c8b91 --- /dev/null +++ b/roles/shell/tasks/users/angelmage.yml @@ -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" From 47a2a64277c180cfcdbf423af88ddf997b7d2e46 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 1 Oct 2020 22:18:22 +0200 Subject: [PATCH 239/356] Adding user deltav --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/deltav.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/deltav.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6e8ee47b..5f3dd980 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -278,3 +278,4 @@ - include: users/vgk.yml - include: users/GreenEyedFury.yml - include: users/angelmage.yml +- include: users/deltav.yml diff --git a/roles/shell/tasks/users/deltav.yml b/roles/shell/tasks/users/deltav.yml new file mode 100644 index 00000000..81ad0b32 --- /dev/null +++ b/roles/shell/tasks/users/deltav.yml @@ -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" From a70182e878587783ec1e2e97a140b1e5102e125a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 8 Oct 2020 23:52:30 +0200 Subject: [PATCH 240/356] Adding user acab --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/acab.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/acab.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5f3dd980..f2642ec8 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -279,3 +279,4 @@ - include: users/GreenEyedFury.yml - include: users/angelmage.yml - include: users/deltav.yml +- include: users/acab.yml diff --git a/roles/shell/tasks/users/acab.yml b/roles/shell/tasks/users/acab.yml new file mode 100644 index 00000000..5dcb1d17 --- /dev/null +++ b/roles/shell/tasks/users/acab.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up acab + user: + name: acab + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/acab +- authorized_key: + user: acab + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHsTmK5ROgW/v05L2FhFdtFUXtMcfPyGtf+pXLIBKcNt" From bb5820030f1e65280ee774fa1319c49ded738efd Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 9 Oct 2020 00:26:51 +0200 Subject: [PATCH 241/356] acab is unenforced in ansible (Undelivered Mail Returned to Sender) --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/acab.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/acab.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f2642ec8..5f3dd980 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -279,4 +279,3 @@ - include: users/GreenEyedFury.yml - include: users/angelmage.yml - include: users/deltav.yml -- include: users/acab.yml diff --git a/roles/shell/tasks/users/acab.yml b/roles/shell/tasks/users/acab.yml deleted file mode 100644 index 5dcb1d17..00000000 --- a/roles/shell/tasks/users/acab.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up acab - user: - name: acab - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/acab -- authorized_key: - user: acab - state: present - key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHsTmK5ROgW/v05L2FhFdtFUXtMcfPyGtf+pXLIBKcNt" From 16178ce2956a3ab8b06733634e283ce9aeb61253 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 9 Oct 2020 01:32:08 +0200 Subject: [PATCH 242/356] Adding user famubu --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/famubu.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/famubu.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5f3dd980..54033a14 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -279,3 +279,4 @@ - include: users/GreenEyedFury.yml - include: users/angelmage.yml - include: users/deltav.yml +- include: users/famubu.yml diff --git a/roles/shell/tasks/users/famubu.yml b/roles/shell/tasks/users/famubu.yml new file mode 100644 index 00000000..1f29ea5b --- /dev/null +++ b/roles/shell/tasks/users/famubu.yml @@ -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" From 9e21a29f660c82365a374883272da192790e059f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 9 Oct 2020 01:36:39 +0200 Subject: [PATCH 243/356] Adding user riolo --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/riolo.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/riolo.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 54033a14..4bf4948c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -280,3 +280,4 @@ - include: users/angelmage.yml - include: users/deltav.yml - include: users/famubu.yml +- include: users/riolo.yml diff --git a/roles/shell/tasks/users/riolo.yml b/roles/shell/tasks/users/riolo.yml new file mode 100644 index 00000000..12431fab --- /dev/null +++ b/roles/shell/tasks/users/riolo.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up riolo + user: + name: riolo + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/riolo +- authorized_key: + user: riolo + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDDrPQN9BeifH8Sgr+sH+wFKZMe067g6Bp8YwXpg0m24arxRxsW6Cmk/wPAgqxxVT5y38xoWpnbKYk8tdWqPrfH6+k0pUCH3WacD2KXBcoUZL+yjdJ7RkoXCb/x1ooBTUQbpftuajilaFpQbBQw1qmVER63HB3TNsE9tVpA4i4IVDAzBDpmO9LbpuHS/IMuIy5hYc+GyOKG4F501a60A7MDM0AgAr2eR5qoefx5rZtfTpScQ0VOxoOMwxt9s7E3yiX/6rblWWkJStR+Ke/X0cLdwuxyztaFd5wA0J/e1L41gC+vh6KKbfuGFjnnSu2a1dF/uT7Y/ssyAGLF2Zbcj9NyTos/adpMMv1Tf8dcldGgmaJIL+k06w5307WfaTNyYAP8+OfMzrw8QoOkbj+GCmvJ4o4Pe4Ts0UF0qYIkwVVculKW2UbRKAZeBYdTXSaRHnhe95JKNRxy1ZttoDq/3nG80aY02VTyuUTijGp3acveUaHor5wK4msxNcl9JCToBjk=" From a26ee26e09649a8deef1bbb285b7193ed6c6ca26 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 9 Oct 2020 01:40:50 +0200 Subject: [PATCH 244/356] Adding user catman --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/catman.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/catman.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4bf4948c..8528b819 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -281,3 +281,4 @@ - include: users/deltav.yml - include: users/famubu.yml - include: users/riolo.yml +- include: users/catman.yml diff --git a/roles/shell/tasks/users/catman.yml b/roles/shell/tasks/users/catman.yml new file mode 100644 index 00000000..13e803dc --- /dev/null +++ b/roles/shell/tasks/users/catman.yml @@ -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" From 8b3398874d27976a0db3fd7b082b80fd8805198c Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 16 Oct 2020 12:47:14 -0400 Subject: [PATCH 245/356] User prune --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8528b819..e2352c4f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -255,7 +255,7 @@ - include: users/beneskiwik.yml - include: users/nikto.yml - include: users/seerlite.yml -- include: users/nikita.yml +#- include: users/nikita.yml - include: users/pokemongo.yml - include: users/prashantch.yml - include: users/Xiboon.yml From 5ae561d57b07afcd43b3371be26635d72ab46e46 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 20 Oct 2020 00:24:31 +0200 Subject: [PATCH 246/356] Adding user genvara --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/genvara.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/genvara.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e2352c4f..4b5fb80a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -282,3 +282,4 @@ - include: users/famubu.yml - include: users/riolo.yml - include: users/catman.yml +- include: users/genvara.yml diff --git a/roles/shell/tasks/users/genvara.yml b/roles/shell/tasks/users/genvara.yml new file mode 100644 index 00000000..67ad9238 --- /dev/null +++ b/roles/shell/tasks/users/genvara.yml @@ -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" From f82c4ae64e0eb6920d83328edef09ce476ad91b4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 20 Oct 2020 00:25:34 +0200 Subject: [PATCH 247/356] Adding user alma --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/alma.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/alma.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 4b5fb80a..947c3fce 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -283,3 +283,4 @@ - include: users/riolo.yml - include: users/catman.yml - include: users/genvara.yml +- include: users/alma.yml diff --git a/roles/shell/tasks/users/alma.yml b/roles/shell/tasks/users/alma.yml new file mode 100644 index 00000000..ae00c436 --- /dev/null +++ b/roles/shell/tasks/users/alma.yml @@ -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" From 39354ea46c736f98c97e9cae4e6f72cd85eb26b2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 20 Oct 2020 00:26:29 +0200 Subject: [PATCH 248/356] Adding user thefunkyspaw --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/thefunkyspaw.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/thefunkyspaw.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 947c3fce..6b9836fa 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -284,3 +284,4 @@ - include: users/catman.yml - include: users/genvara.yml - include: users/alma.yml +- include: users/thefunkyspaw.yml diff --git a/roles/shell/tasks/users/thefunkyspaw.yml b/roles/shell/tasks/users/thefunkyspaw.yml new file mode 100644 index 00000000..58561b55 --- /dev/null +++ b/roles/shell/tasks/users/thefunkyspaw.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up thefunkyspaw + user: + name: thefunkyspaw + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/thefunkyspaw +- authorized_key: + user: thefunkyspaw + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA1jqH/VkGFXHZZU7jdqjfP5+duqBlzSTb3Ve5A2TujU thefunkyspaw@global" From 6bd1c712285bcff90b617d17f73687575857ee60 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 22 Oct 2020 15:22:06 +0200 Subject: [PATCH 249/356] public key wasn't added --- roles/shell/tasks/users/thefunkyspaw.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/roles/shell/tasks/users/thefunkyspaw.yml b/roles/shell/tasks/users/thefunkyspaw.yml index 58561b55..c630aea3 100644 --- a/roles/shell/tasks/users/thefunkyspaw.yml +++ b/roles/shell/tasks/users/thefunkyspaw.yml @@ -1,6 +1,5 @@ --- -- name: Setting up thefunkyspaw - user: +- user: name: thefunkyspaw groups: tilde state: present From 1bcc7ea6ba7cca5b4ddd209c7d8f9b6fbed4b2f6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 28 Oct 2020 09:49:12 +0100 Subject: [PATCH 250/356] Adding user uberius --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/uberius.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/uberius.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6b9836fa..6779a9d3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -285,3 +285,4 @@ - include: users/genvara.yml - include: users/alma.yml - include: users/thefunkyspaw.yml +- include: users/uberius.yml diff --git a/roles/shell/tasks/users/uberius.yml b/roles/shell/tasks/users/uberius.yml new file mode 100644 index 00000000..408e2828 --- /dev/null +++ b/roles/shell/tasks/users/uberius.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up uberius + user: + name: uberius + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/uberius +- authorized_key: + user: uberius + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCeAMn0sdZYgCc57Wo55CVRbWeTrfY9+5nu4RWqLYPz4IH8mxFmAj85XzefcdgAS1P//Sf4t0R3AvGZwCcouKdLXEU4YNoZCIdDWAHy7NQMvQbiqS8p5kwr9eQgY6+eT6l8D0Zw2UaoeOu8U2omq52MTSJotHHghHEceKtEgnz1iGOT9R3f7LLFCMwbLIsHWYx250xhkUMy+Ch45Xk0HuxyVw5AJfOwWj8Q2evn02pnRX2uB8e21gojaE7+wn1dk7hLPSUIiaL84nLqsc5fom9Y3RZ9T+zTjezd0r2y5zf4q3GMPMeZgXEP5Y22AnaWS7PSpfngJ9lnouxNoXoLKtyULb0iU0Q4uTtAmlRUcyQvaiUyMfj136bkNdS2W0nLziMumVT3fbaButh4qNUvDHqxEAwxLPErq/4puFvJGJ13cf+w0StqpgUC83SsY4cFT4s/LxMyuhgMqYvZwZS5x6c2L+Sin9oQQag00UdtQsEiLzywlHm2L5P8GztgiDv2+zPYSgIQYzT1PWkYWf/e2GiHojdoGHY/CFUh3KEsd9znnED+2wsu0DmQOK6XHYO3Ncyvslh3XRg3O6NOLBRu+UW8xrOJ1SW2NRClQwjKHKZiR18Dm310XPrF/9iVFFsUvz4V9yENJEK9QPTMWeo4m46BXXcurCTuFC7JjtkSAe8Fyw== thunix" From 734d8c25b553c9a26bd0da6486894d85742c1805 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 28 Oct 2020 10:13:52 +0100 Subject: [PATCH 251/356] Adding user low-key --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/low-key.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/low-key.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6779a9d3..8f28f838 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -286,3 +286,4 @@ - include: users/alma.yml - include: users/thefunkyspaw.yml - include: users/uberius.yml +- include: users/low-key.yml diff --git a/roles/shell/tasks/users/low-key.yml b/roles/shell/tasks/users/low-key.yml new file mode 100644 index 00000000..22bbf8bd --- /dev/null +++ b/roles/shell/tasks/users/low-key.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up low-key + user: + name: low-key + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/low-key +- authorized_key: + user: low-key + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC08Iy/TZvvPHPuBbvLUtah9bf9aJkglAXho6OR5bKiOBN+ry/v6O0dXU0hL++SqvQH4ILSoyz4w88gyFTgaz4odiKvAmrftaaUTfmFMzk/wThKeivQQ9zMLkYLDrUuFkfzqQsvCVEGHnD+B98Z7w8cPS9Z8+T7+bgfp/IM8hMlTTGvK9+QiM4wlOWZhgUQEEicDPvx3yk+Fe7jhm6NUDr7d5BCHjjZqSikXYQmPVULWiQQ1yw1KX86FVRsnsOxA8i/23D9IfWx5OVI2DEY69+vdS2avZnlLl1a3BIHvPOmpGwVKK7j5ZuoS9xYhgVo34Z8lGxUVT+bnjksNGL8w4jokGAZAhWThtXSc/JwNdIeSu0w/WgHT8Qi7yAhfCDEHKj5y5AeUcmnwPSy0kmr0ta7+flvH55zp7sWjM76P0Ysk+LAkm5VxcfyaLDXLuCgWoLv/PkGK48iAZDqiYhArq3aLG6tkRI4rIfs53zTTY/LdKCQh5X7toT/+xcsVnk5wQdKAgrzqHtVdptlm/8qrm+fy/JtQKJvpcZpgkzgBP9NXN4M+F8pBCrjg3VlXLxvBwX/svLuUMlM2qSRgjVT7BfVJvBo0HJ9XxWxxqF/NV1IqAY3ZKGUPCCBxoUCDoZIj8BYvP59okpHIpim/8jWjJgUZomXNt1GY8wWUQrW8x9ehQ==" From 9f63cebc94e4d2d281ee70e60165811723ad940f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 28 Oct 2020 10:15:02 +0100 Subject: [PATCH 252/356] Adding user lukaszwdowiak --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lukaszwdowiak.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lukaszwdowiak.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8f28f838..5e397ba7 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -287,3 +287,4 @@ - include: users/thefunkyspaw.yml - include: users/uberius.yml - include: users/low-key.yml +- include: users/lukaszwdowiak.yml diff --git a/roles/shell/tasks/users/lukaszwdowiak.yml b/roles/shell/tasks/users/lukaszwdowiak.yml new file mode 100644 index 00000000..cb924290 --- /dev/null +++ b/roles/shell/tasks/users/lukaszwdowiak.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lukaszwdowiak + user: + name: lukaszwdowiak + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lukaszwdowiak +- authorized_key: + user: lukaszwdowiak + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCvf+d8K/jd0J9iOjoR1pDo7VL0IjIO3IPoa7snbVEZAJlgYfsFeVky5D5A/qWKlS8d7MkWQe5AWStWQYaCuZhgjnVdz3/7iiCKSTsOGugUgwCKYNwrWSgFYLSy2tWYepfBQykm1fVAcodbN6J4A6PsFYvN1r8RsEFjH5Zg6O0AYlBaVumaOHJyUmH1Wh0N4SVcYTwY9GFfdGHIS35HtEG1trrNnUZBkw3brrji91PKYalIQikDQUxatoFb6eiW41NLlI3c4eB+kRzZoWYOh2tSQDUwqoADeqhW+CJ2P/9FLiIK6Gt9/XZkuhLZEz2nZcLIp7E0wSR8YM8pxGlPobNm9uLQ9l4OZL5KJAZOjOfM+5pnect9CJ3Y3QioWzJs4KR8hstNBPG6cQ+TQGAMJa+rJUcmu1WNbxIH15HaPvasgguuFqG+4qd8G+yLCxmuRc8ZqehzPJxhRRvat3ccEH+GUpHvmix5/jNpUxe1fNt9Y1MI5s475VE2qs5yZI3Td1k= cha0t1c@hell" From 92ae1fd6cd694f55895131ebd2e28a03ea634b4d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 29 Oct 2020 09:28:18 +0100 Subject: [PATCH 253/356] to change ssh public key --- roles/shell/tasks/users/low-key.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/low-key.yml b/roles/shell/tasks/users/low-key.yml index 22bbf8bd..9eb7013b 100644 --- a/roles/shell/tasks/users/low-key.yml +++ b/roles/shell/tasks/users/low-key.yml @@ -12,4 +12,4 @@ - authorized_key: user: low-key state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC08Iy/TZvvPHPuBbvLUtah9bf9aJkglAXho6OR5bKiOBN+ry/v6O0dXU0hL++SqvQH4ILSoyz4w88gyFTgaz4odiKvAmrftaaUTfmFMzk/wThKeivQQ9zMLkYLDrUuFkfzqQsvCVEGHnD+B98Z7w8cPS9Z8+T7+bgfp/IM8hMlTTGvK9+QiM4wlOWZhgUQEEicDPvx3yk+Fe7jhm6NUDr7d5BCHjjZqSikXYQmPVULWiQQ1yw1KX86FVRsnsOxA8i/23D9IfWx5OVI2DEY69+vdS2avZnlLl1a3BIHvPOmpGwVKK7j5ZuoS9xYhgVo34Z8lGxUVT+bnjksNGL8w4jokGAZAhWThtXSc/JwNdIeSu0w/WgHT8Qi7yAhfCDEHKj5y5AeUcmnwPSy0kmr0ta7+flvH55zp7sWjM76P0Ysk+LAkm5VxcfyaLDXLuCgWoLv/PkGK48iAZDqiYhArq3aLG6tkRI4rIfs53zTTY/LdKCQh5X7toT/+xcsVnk5wQdKAgrzqHtVdptlm/8qrm+fy/JtQKJvpcZpgkzgBP9NXN4M+F8pBCrjg3VlXLxvBwX/svLuUMlM2qSRgjVT7BfVJvBo0HJ9XxWxxqF/NV1IqAY3ZKGUPCCBxoUCDoZIj8BYvP59okpHIpim/8jWjJgUZomXNt1GY8wWUQrW8x9ehQ==" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDlo/bO1pcYaVwSxKOoOf47iPIsnlcRwtvcLci7NpYJEeHPdBfjJFaXJBkfT0C+m24Xpmrb9/RoQXUkHNJOtNZkYg/bGuDqNnR0kYlrM6x9+b12KhIyKech+72Wn3hxcFKoiUW11uuhK2jU2Mc86ksS3rAFRsX7RhAWkC31xBPot3hUbkWCQ3YepiIZmJv14UeZhHUT6A5uIyEUuVqZnhBzcqlfNnBSfVGeur3drGfg5fRZZP6QRiNYGM8Alhjtr83uWRcBeVJ4w5tj9t+4dysTxIA0htkPG+FWosyLCPMbsbA8e46LzVWM5mhJXNjAC3VU1KDCs5Bjd1r/bkuob84DMDvFFP/oMtcWi6XHcyXNKI2rDHw7Le/drcdvrbKQfb/HSwZPEUKhjC7BLvySZ1OToA1PYOjy8qK4TnJkBZHfftbIpyKSA0wBPWp8JkMQRZcE9T9LCDGnpRqLlxuGGoCdzrV3d+kXQdtfC0kTidn9/MyI0eeZ5os5dETpkJnzzXU=" From 5300ad6036fe16fdeae408eb2b9b917afe19b122 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 30 Oct 2020 23:20:30 +0100 Subject: [PATCH 254/356] update effective RBL setup for postfix --- roles/shell/files/etc/postfix/main.cf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index b40383e0..0c5744a2 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -66,8 +66,11 @@ smtpd_recipient_restrictions = reject_unknown_recipient_domain, check_policy_service unix:private/policyd-spf, reject_rbl_client spamsources.fabel.dk, - reject_rbl_client bl.fmb.la, + 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 db.wpbl.info, reject_rbl_client sbl.spamhaus.org, From f60ade3ce6c272836654e3f0b166f026b83b8342 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 4 Nov 2020 13:54:51 +0100 Subject: [PATCH 255/356] Adding user slaserx --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/slaserx.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/slaserx.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5e397ba7..6a8cd56a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -288,3 +288,4 @@ - include: users/uberius.yml - include: users/low-key.yml - include: users/lukaszwdowiak.yml +- include: users/slaserx.yml diff --git a/roles/shell/tasks/users/slaserx.yml b/roles/shell/tasks/users/slaserx.yml new file mode 100644 index 00000000..d3d904b9 --- /dev/null +++ b/roles/shell/tasks/users/slaserx.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up slaserx + user: + name: slaserx + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/slaserx +- authorized_key: + user: slaserx + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEA09YQcX9qMCY45lFbkOJWt6xcotXOYIOfTA9vlnbDPqRt8Mf4W4K+16qOCPOILpO5sJ6AXsTorjg410o7pCryzqRSf5N+rRGKfbZUS883QaQP1bczkRYnhNsaTK/SjJjw+IfCGly/V7HS6ABV+zSp37RVLjxS3JyhzoCrmhst3eKM6Gc3FnhtX3L2GZ7Di6i6h85paQ1gPbRKsUFPmQ/DVvoykNIds1JjsmN3N7NFelP5PNXemkFyxm/YP+V8atdV7RfUiiRVyvMs7TlDWc/mRWfth1znTMADPwQUgbURSnfrFcmX/8lbL++gClVAToQqISylCY2t+TJgixQ1bmK85Q== rsa-key-20201027" From 7a29e5e99a1b862dbc8783d4757e0b47c3595c7a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 6 Nov 2020 18:56:13 +0100 Subject: [PATCH 256/356] Account recovery on request --- roles/shell/tasks/users/kcubeterm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/kcubeterm.yml b/roles/shell/tasks/users/kcubeterm.yml index bc88d4bc..238cca0d 100644 --- a/roles/shell/tasks/users/kcubeterm.yml +++ b/roles/shell/tasks/users/kcubeterm.yml @@ -12,4 +12,4 @@ - authorized_key: user: kcubeterm state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCd8KhKye5cE3bm95AtZ+tOKCpiSehmMySOIZXYWSGObD0Wki7v+CzIOdW29EGADWJZXGJCUJ7feQzhSzv+Wccdw4O1T1zrjbZoJd68xRT9AVaNmyHcFlavptQFZn65UocI3VryiRLIzx5JFwW17iTPnJ2XX8DRhWS++G5DqEJqCYxPkeYd5xEjQYOtE5DjwIyfQEBZsa8wv+XA3Y0+KxKgFV0T+AkTaQUzEp817YVjV0vkgoNKvlNOP/54PHb3+5Wl6OWgja6jwDiQl3dBjCjFRKqKqZRa+Y1NVB/cD3HUpPG97u25R3Hi/c9BGCczsiRHpvniG1biDEYPg+PmZLur3DBUSSELWDkzfw78VJDkMC+Q+oMb7/ITXP3K6jTurWmitHik7pdJv8gEpt3fKohQc1wUL/sopbM99EGfCe9tUKX38shtgBIbnPHtfBitpPyIUOe5/jkSeV6IvI8kyRUTYZ4RAIkeh60m1hIlFd67/IXm+XMkPLGpfH+zSbSdO8U= kcubeterm" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC4BCZ7B9SYDx9fNKjt5wPNMLrkj+Aw80I9xJ3diTnUuvdL42nc/OGpRf/ZcwPyBbet9yflEZrzm3v+y95/Ry5hX7C9rlC7nchU0r4jqZinCgp9L4bHXvTlmeoEqOkfgSU3sRholju7D9bRMx8tg3hBke9KASL7N9Dg6ACblWwPoKnxgVAmGcgNcJOYtUByDd6YzzjLDbUeCVC1H5LeU7sz+i2M314qcpd8qjYsGmlTzgizGWddQfGVQdFRITKXVsPYqxnH0riAAI5p7JFQrrPc34SF1JyzrKTvKFC/gUyhHck1EgdTCeLcrZdQQY26OxND/EUIClfIHsSvoWM4PdoI1cP0tTusYW446OYwYi22Pmo7txZFz53/j+tsTD41mokk/pt0yryWiOe23HimXXAwRz8Pu9/0/c7AMfBADGoWqGFiegIV9K5mI3Ja+vw26Nkcl1RALuol65m1GmzcMKPQNZALSnk0RSRGtOBxfiRZtgEC5+yF6HfV/K7Oo2ha7J8= u0_a227@localhost" From c40c5d1428fc97d11d1d33f8edcb34676e9a72cb Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 7 Nov 2020 13:49:58 +0100 Subject: [PATCH 257/356] install ccmake package --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 88f2377a..eb99034d 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -75,6 +75,7 @@ - clang - cloc - cmake + - cmake-curses-gui - cmark - context - cowsay From 478adedb7b7881ec8ea7860c85d9cbd030d8a66c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 9 Nov 2020 08:22:21 +0100 Subject: [PATCH 258/356] Adding user fengf --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/fengf.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/fengf.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 6a8cd56a..52e887ee 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -289,3 +289,4 @@ - include: users/low-key.yml - include: users/lukaszwdowiak.yml - include: users/slaserx.yml +- include: users/fengf.yml diff --git a/roles/shell/tasks/users/fengf.yml b/roles/shell/tasks/users/fengf.yml new file mode 100644 index 00000000..4afef9b9 --- /dev/null +++ b/roles/shell/tasks/users/fengf.yml @@ -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" From d0c9711bf3993cb862dbca53b7b84e9641b6b3b5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 11 Nov 2020 23:06:38 +0100 Subject: [PATCH 259/356] Adding user axolotl --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/axolotl.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/axolotl.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 52e887ee..526ad59e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -290,3 +290,4 @@ - include: users/lukaszwdowiak.yml - include: users/slaserx.yml - include: users/fengf.yml +- include: users/axolotl.yml diff --git a/roles/shell/tasks/users/axolotl.yml b/roles/shell/tasks/users/axolotl.yml new file mode 100644 index 00000000..3afd9599 --- /dev/null +++ b/roles/shell/tasks/users/axolotl.yml @@ -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" From 414faab2ded643e9ffc82b01d232d13524f1cb90 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 12 Nov 2020 20:05:00 +0100 Subject: [PATCH 260/356] Adding user lesstech --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/lesstech.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/lesstech.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 526ad59e..0d9d8664 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -291,3 +291,4 @@ - include: users/slaserx.yml - include: users/fengf.yml - include: users/axolotl.yml +- include: users/lesstech.yml diff --git a/roles/shell/tasks/users/lesstech.yml b/roles/shell/tasks/users/lesstech.yml new file mode 100644 index 00000000..f52252bb --- /dev/null +++ b/roles/shell/tasks/users/lesstech.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up lesstech + user: + name: lesstech + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/lesstech +- authorized_key: + user: lesstech + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCbq7Tld0Dch5bhn/4LkkNLf+rLmiaxW6M0sHawB7TzSejsfuk8X7a3wRzR0Cg3/IVx3fdKpBWVMg0aI8YRwOajrf9m+erX8kk3sn1Gf6/sjMEzP1rRasuy9qcK4nBBFcgPBJwxoMHfN8dzcEEtodwoY6qWOhJzBKMULnlkmxEeJhFBx2yxN44rcdhJpGnHl25cU7+7idf62Y02zV94PDsuW/q+OjMkib7n7DgJmyDhNVivNHTKx7nafLMbuV3QpUXoq45qtGGpyzMde85nYQWqIUGFQ2w0OYxAZSKHoDfuQNXHgYYqDo7waxU4CKWU1w07aotPZabpgMAglmwNv03pVi5UVa0sEOqnm8WxUsi8KuZPwKwQHqaoZtMaLhq+FApVEVx4j7wQZK89CP+jk2F6mnLe3Z8XfRd7sshy7uItqEZc/uMEaT/nRNMAbJCMNycm+kgdDo0yj2LlOecgHTKyIdRyXCZwHBc3mqzuyMJhYftlFwEMG73CdyYLgVmIO18= lesstech@abacus-mega" From c05a8deb738eef80b9c12699c88762044f71ee6d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 14 Nov 2020 14:44:02 +0100 Subject: [PATCH 261/356] Adding user sasaboss --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/sasaboss.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/sasaboss.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 0d9d8664..56c23a44 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -292,3 +292,4 @@ - include: users/fengf.yml - include: users/axolotl.yml - include: users/lesstech.yml +- include: users/sasaboss.yml diff --git a/roles/shell/tasks/users/sasaboss.yml b/roles/shell/tasks/users/sasaboss.yml new file mode 100644 index 00000000..e21dd3df --- /dev/null +++ b/roles/shell/tasks/users/sasaboss.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up sasaboss + user: + name: sasaboss + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/sasaboss +- authorized_key: + user: sasaboss + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFk5VsmTAWGTHCBrf8b0OPptWSNaRuIS/zPrdgB2AJnz ed25519-key-20201113" From e37124c80aa9c26400818d10b0458388737d6be7 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 18 Nov 2020 21:31:08 +0100 Subject: [PATCH 262/356] Adding user crispr --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/crispr.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/crispr.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 56c23a44..9ff16e59 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -293,3 +293,4 @@ - include: users/axolotl.yml - include: users/lesstech.yml - include: users/sasaboss.yml +- include: users/crispr.yml diff --git a/roles/shell/tasks/users/crispr.yml b/roles/shell/tasks/users/crispr.yml new file mode 100644 index 00000000..0ca0c0a1 --- /dev/null +++ b/roles/shell/tasks/users/crispr.yml @@ -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" From a55f7579d9ab9ff7fdba5c31de7df83eaac1ab68 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 18 Nov 2020 22:20:32 +0100 Subject: [PATCH 263/356] Adding user ialokin --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ialokin.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ialokin.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9ff16e59..d28e59c6 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -294,3 +294,4 @@ - include: users/lesstech.yml - include: users/sasaboss.yml - include: users/crispr.yml +- include: users/ialokin.yml diff --git a/roles/shell/tasks/users/ialokin.yml b/roles/shell/tasks/users/ialokin.yml new file mode 100644 index 00000000..bd6fb160 --- /dev/null +++ b/roles/shell/tasks/users/ialokin.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up ialokin + user: + name: ialokin + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/ialokin +- authorized_key: + user: ialokin + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAz2seEPxKPCgjtLUffltJpnmsXu8E7Z8L0uDBgiKVIScaC06p+659kzFbayDwzZdLQeUDsSLwe4+H63v9NJyViQUCbo5gdPvH9RGFH3aZwTs7VH3BB/qbPr4EScO0KXqTHofSZZPgDX11T3/Iuhh9SOtMDICaRx09ByGupntC+1DPWmPJADVNh0CTJy9kMqe3dlnFp7siwmbHwyb6pmfEaF2hgrltzfn9ZlFVqhNz5f4t8tZ+flNg1f7XasAFAoiFf6XmHbL8J5anl+7vQ4UX+plJMOH1P0yauXP1I9BxUV5v66dA6IpZhIBsV+LLaetyKGvQoBu9GfaNsJ4tplLGSQ== rsa-key-20201111" From 3f86eebe49f496053c96e7792f7f69c2352d2108 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 21 Nov 2020 11:25:36 +0100 Subject: [PATCH 264/356] Adding user tc --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/tc.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/tc.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d28e59c6..ed38f1bb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -295,3 +295,4 @@ - include: users/sasaboss.yml - include: users/crispr.yml - include: users/ialokin.yml +- include: users/tc.yml diff --git a/roles/shell/tasks/users/tc.yml b/roles/shell/tasks/users/tc.yml new file mode 100644 index 00000000..be1ca8bc --- /dev/null +++ b/roles/shell/tasks/users/tc.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up tc + user: + name: tc + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/tc +- authorized_key: + user: tc + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAnul4pJQ/iVKN3G8oEJ2YczsPMpeVAMQDT0KKa5zRAZdrC7vX/sFfs85a7psrWCtROugEUlTNmWjPAkKaCSXAyjptLYWzxLyKSJhhx+qKWCSxp21bmX8L6HdEOnHjBJtPM++oVNsgahPxHYxSt3pM4LnhpcuO1JFUS96B/aU08EAtTsdAuPEf0QV57AAhxWtzrZl02SRzix6i5W6iX6D0QDBay+EQoRU7IpgLrEpnSPotmroDcTxWOK9Dkx3z7cQiycqG9SFT3LqcqSX/hscoE1w0FBIifhcHpEFvdk6DxXjbBG/xfyDxqpL2Vt6U6N2LxaOvZ+G5ISeoKjGdD/XmbQ== rsa-key-20201121" From 531eb0e8337b8e3a3ff0aec5619dae85fb18fefd Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 21 Nov 2020 11:48:19 +0100 Subject: [PATCH 265/356] Adding user whyorean --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/whyorean.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/whyorean.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index ed38f1bb..9100d8ac 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -296,3 +296,4 @@ - include: users/crispr.yml - include: users/ialokin.yml - include: users/tc.yml +- include: users/whyorean.yml diff --git a/roles/shell/tasks/users/whyorean.yml b/roles/shell/tasks/users/whyorean.yml new file mode 100644 index 00000000..70de3408 --- /dev/null +++ b/roles/shell/tasks/users/whyorean.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up whyorean + user: + name: whyorean + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/whyorean +- authorized_key: + user: whyorean + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDkPohFPjPwx0ZqkNE2DpskiRYyKP65B7YqjHCVdU4TBigyT+g41jJCHt9VKEKDpd8Va2bczT/KosfqwGIA0KAh4RL23nVv8jP0ZRJrPug3rdMA5J1k+korashHr9qReJIiWKPkc20ttAcXe+Q+2rx9/XfXAxTz+NMrIUWuSJlgyD3D9XNUELs7FIJ9uZorPblVaZbDpvNhB9HtNnwxDOAhuyUq7Ur8zOa1KkzS/+7g/U/N1T4ArcoWZqfYFdaKO3zLwM2XvnFy4zirRTE8ClMUHQhlKvlDNmPy2b9gIstWJ5+GHoRSuKqdFINKKBuT7pnTH+jOVSLzMkBMsigAESaH" From 05aa51bd88df3dc69e11fb9d21b5ebcd35591b1f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 23 Nov 2020 00:17:33 +0100 Subject: [PATCH 266/356] Adding user goring --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/goring.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/goring.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9100d8ac..3b571334 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -297,3 +297,4 @@ - include: users/ialokin.yml - include: users/tc.yml - include: users/whyorean.yml +- include: users/goring.yml diff --git a/roles/shell/tasks/users/goring.yml b/roles/shell/tasks/users/goring.yml new file mode 100644 index 00000000..c91b1547 --- /dev/null +++ b/roles/shell/tasks/users/goring.yml @@ -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" From 465df5a662591098dbcf1e7e37e62a42187d9255 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 23 Nov 2020 20:55:02 +0100 Subject: [PATCH 267/356] Adding user q45 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/q45.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/q45.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 3b571334..7cee5a51 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -298,3 +298,4 @@ - include: users/tc.yml - include: users/whyorean.yml - include: users/goring.yml +- include: users/q45.yml diff --git a/roles/shell/tasks/users/q45.yml b/roles/shell/tasks/users/q45.yml new file mode 100644 index 00000000..dc505e9d --- /dev/null +++ b/roles/shell/tasks/users/q45.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up q45 + user: + name: q45 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/q45 +- authorized_key: + user: q45 + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHisb3Xk3ND2VHOBWHFYN93fvdJ+Lfe8IIfSf9p7WKrf" From 3bd45f5d56c8c77be5ae88cacf4963dc0592480d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 26 Nov 2020 15:46:17 +0100 Subject: [PATCH 268/356] Adding user earne --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/earne.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/earne.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7cee5a51..52e7384d 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -299,3 +299,4 @@ - include: users/whyorean.yml - include: users/goring.yml - include: users/q45.yml +- include: users/earne.yml diff --git a/roles/shell/tasks/users/earne.yml b/roles/shell/tasks/users/earne.yml new file mode 100644 index 00000000..41ffaca2 --- /dev/null +++ b/roles/shell/tasks/users/earne.yml @@ -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" From 7dd6dad82652a328cbda92145326838a80cb171f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 27 Nov 2020 23:56:46 +0100 Subject: [PATCH 269/356] Adding user Raoul69 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Raoul69.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Raoul69.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 52e7384d..689f9ea6 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -300,3 +300,4 @@ - include: users/goring.yml - include: users/q45.yml - include: users/earne.yml +- include: users/Raoul69.yml diff --git a/roles/shell/tasks/users/Raoul69.yml b/roles/shell/tasks/users/Raoul69.yml new file mode 100644 index 00000000..8385709a --- /dev/null +++ b/roles/shell/tasks/users/Raoul69.yml @@ -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" From 05acb10135d982ed47663351afc9817272087779 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 28 Nov 2020 01:27:44 +0100 Subject: [PATCH 270/356] Install server-side Python web framework --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index eb99034d..ae47fbe9 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -215,6 +215,7 @@ # - python-potr - python-twisted - python3 + - python3-django - python3-flask - python3-pip - python3-toot From 42b1e51079b484b0e021a2b1e6ce9a0fe640c43f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 30 Nov 2020 18:32:18 +0100 Subject: [PATCH 271/356] znc account script is not used anymore --- .../files/var/lib/znc/create-znc_account.sh | 44 ------------------- .../files/var/lib/znc/znc_account.newconf | 25 ----------- roles/shell/tasks/znc.yml | 16 ------- 3 files changed, 85 deletions(-) delete mode 100755 roles/shell/files/var/lib/znc/create-znc_account.sh delete mode 100644 roles/shell/files/var/lib/znc/znc_account.newconf diff --git a/roles/shell/files/var/lib/znc/create-znc_account.sh b/roles/shell/files/var/lib/znc/create-znc_account.sh deleted file mode 100755 index 3af45a84..00000000 --- a/roles/shell/files/var/lib/znc/create-znc_account.sh +++ /dev/null @@ -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 " " >> $CONF -echo "" >> $CONF - -sleep 1 -kill -s HUP $PID # Reload znc.conf -sleep 1 -kill -s USR1 $PID # Rewrite znc.conf diff --git a/roles/shell/files/var/lib/znc/znc_account.newconf b/roles/shell/files/var/lib/znc/znc_account.newconf deleted file mode 100644 index 0c49eb03..00000000 --- a/roles/shell/files/var/lib/znc/znc_account.newconf +++ /dev/null @@ -1,25 +0,0 @@ - - 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] - - - Method = SHA256 diff --git a/roles/shell/tasks/znc.yml b/roles/shell/tasks/znc.yml index 82397290..ee584176 100644 --- a/roles/shell/tasks/znc.yml +++ b/roles/shell/tasks/znc.yml @@ -35,22 +35,6 @@ [Install] WantedBy=multi-user.target -- name: Install znc_newaccount - copy: - src: ../files/var/lib/znc/znc_account.newconf - dest: /var/lib/znc/znc_account.newconf - owner: znc - group: root - mode: 0660 - -- name: Install znc user script - copy: - src: ../files/var/lib/znc/create-znc_account.sh - dest: /var/lib/znc/create-znc_account.sh - owner: znc - group: root - mode: 0770 - - name: Install LE hook copy: src: ../files/etc/letsencrypt/renewal-hooks/update-znc.pem From a025bdcc55d5131bea844599328b63e6429924a3 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 30 Nov 2020 18:43:23 +0100 Subject: [PATCH 272/356] Adding user cypok --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cypok.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cypok.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 689f9ea6..c522ca38 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -301,3 +301,4 @@ - include: users/q45.yml - include: users/earne.yml - include: users/Raoul69.yml +- include: users/cypok.yml diff --git a/roles/shell/tasks/users/cypok.yml b/roles/shell/tasks/users/cypok.yml new file mode 100644 index 00000000..90d2c42d --- /dev/null +++ b/roles/shell/tasks/users/cypok.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up cypok + user: + name: cypok + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/cypok +- authorized_key: + user: cypok + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBkpbXReV5vuA5OReSOA3F9zJoqE3GVebkqnJccfEPeLpt34BfuWgRgWMeMO0Ja+AQoXW0sZnpre7/0971Xj+eG+hgm7qkOzvIpJHeX3Qp5zxARDS69LQYYOKEzkNfNatxK5FP42IAKtJzCl2HX2kq4k4xLWC6nfZ3rN3nxsFGcgvVXICV7t0zEgFC+weyYdijr5Z2D6B3NGln6CPTkqpmgI2tyCfYD/a2Oi2M23SzinkxDgZniTo2MzzqmjBk3piwNQOZYryysu+ZOF6F6x1XddD8b+yX0VjJqeNVjPKXkRKKcEuwx7mfOVQbIDzoYygTGiSrliQLhZZ19gT623mj cypok@de1" From bdaa98e08d41dae5eb04811f2a54ce65b758d6dd Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 2 Dec 2020 23:33:38 +0100 Subject: [PATCH 273/356] Adding user julianmarcos --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/julianmarcos.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/julianmarcos.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c522ca38..bab3461f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -302,3 +302,4 @@ - include: users/earne.yml - include: users/Raoul69.yml - include: users/cypok.yml +- include: users/julianmarcos.yml diff --git a/roles/shell/tasks/users/julianmarcos.yml b/roles/shell/tasks/users/julianmarcos.yml new file mode 100644 index 00000000..0fd24a4d --- /dev/null +++ b/roles/shell/tasks/users/julianmarcos.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up julianmarcos + user: + name: julianmarcos + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/julianmarcos +- authorized_key: + user: julianmarcos + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCXs61R0cmrb6kMBvy/3qGc3TVk7vILhunyb3yL9VarEfXk9vCmOoNz+kpgOAr8HJhPWlMZ8HlZlUKkEmO8Vj3NNmjFrrS8Kw7fMmyQrJ5TUMI8oKleqJ58Ml/iTPt5nYLvaZH7V/7YLpc2iYaB6JDMb5ev1e0p1CpiBOEyGDREhN0nflD64eiZ2QhDzq5cUf+LRrRqigOlaQ0AeLrjxSl+kclVDwKkTuTg+1SVd9BbzJnkYeRnwv0OfXZ9/w+Go82CB0s2YKTtAJCWon0/4WTwMYC4+XHHEKvxwKu9Y19pjhj+HIR7KIe8cAQn8hzAFIPmiS91wGSR1u+yiN/05a7ytTrv4Sh2C+2GV4umkRyljj+5o+Qgkpsfboc+o1vnLGQkpFGQwGD/ZTm9avK17vREau8O/oVXOfnENn5/2i9t9rx6xth03kllMQKs+XAcuP21xp/06gEoaoBkZaagmEBSkTCtCoBxR6B9GNV2rz68JOKfY/qzO1OI125T+wBw4nM= julian@art.thunix.net" From 617026fdc64319ae35dd7181d5fef614ac797234 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 3 Dec 2020 22:04:44 +0100 Subject: [PATCH 274/356] Adding user jjasghar --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/jjasghar.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/jjasghar.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index bab3461f..0c84d088 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -303,3 +303,4 @@ - include: users/Raoul69.yml - include: users/cypok.yml - include: users/julianmarcos.yml +- include: users/jjasghar.yml diff --git a/roles/shell/tasks/users/jjasghar.yml b/roles/shell/tasks/users/jjasghar.yml new file mode 100644 index 00000000..1dafc298 --- /dev/null +++ b/roles/shell/tasks/users/jjasghar.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up jjasghar + user: + name: jjasghar + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/jjasghar +- authorized_key: + user: jjasghar + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCxAVkrfknXoHFQtyXtYZ6vONLHn7HTKQq4mkwvCOPMKb3gr6gsLQkCdzmO3CQwOcFl7uDWGdfjH/ocuSUSn6xMvfCdsdGzDiLQXcDJ4jGOuuyOioniN1N00IhAD7Tqsf4AvbQJ7gDqfPKDCw6LdlZ0d0d9pWlJf7eKf/Hq3x8RCqWek/+UCoU4l4T1eAM0N/bA5tj3EfvRuDniO8U5ClsuUbtJ1uxJmrWMhFox3jFp6oNrleHWFTiRsNKfbtfTrTJRYlqcOG2jGAb49JY+p6Ykku4vq0ezYZFYXGJki6a0yLu1kMg5aHJo9UX0d9JW6y11KfXbGKN4okeRcH/tSNov jasghar@remasghar01.local" From f5f320b6442ddd23937e184eed5e6a0bdb50fd14 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 4 Dec 2020 20:27:39 +0100 Subject: [PATCH 275/356] Adding user novaburst --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/novaburst.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/novaburst.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 0c84d088..7f7f3fdb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -304,3 +304,4 @@ - include: users/cypok.yml - include: users/julianmarcos.yml - include: users/jjasghar.yml +- include: users/novaburst.yml diff --git a/roles/shell/tasks/users/novaburst.yml b/roles/shell/tasks/users/novaburst.yml new file mode 100644 index 00000000..655d271d --- /dev/null +++ b/roles/shell/tasks/users/novaburst.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up novaburst + user: + name: novaburst + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/novaburst +- authorized_key: + user: novaburst + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDRMJF+secOobfazaW8JhVI6T2efeDU83aW9YCe8UXCf78DfHchEj9QtpzvsmicGCU//1gUC8egGGTqX6+05xaHSchFlArC6e0f6zBrrxtTu5tIjsLV0PcwyeBrM4ucil8LDYSxjHXf9mZ9dMc+RHaweQQPopUvEomNVDeeqx7Ez5t7O+7Hu77e6irh/LCPFsrAjD88vmZOZ5rHucmcfJhtmAXF3YFBVdluMENRefGOEvUxTr2gPQr1CI8aM5Vd++ajY8O+0iBpwc/lvV6Xt9QFpDJZLmg8nyibbiyLhyCWhcStNZxy8i7GBhs2G+134AHvzysih/Vc7fFa5dT1L7W9 nova@nova-laptop" From bc572d901087e7bece81d47bec6bbffa507d551f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 4 Dec 2020 14:31:31 -0500 Subject: [PATCH 276/356] Package cleanups --- roles/common/tasks/packages.yml | 6 +++--- roles/shell/tasks/packages.yml | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/roles/common/tasks/packages.yml b/roles/common/tasks/packages.yml index 15ef0cac..c43a0e99 100644 --- a/roles/common/tasks/packages.yml +++ b/roles/common/tasks/packages.yml @@ -43,10 +43,10 @@ - python-kerberos - python-markupsafe # - python-netaddr - - python-paramiko + - python3-paramiko # - python-pip - - python-pymysql - - python-selinux + - python3-pymysql + - python3-selinux - python-xmltodict - python-yaml - python3-flask diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index ae47fbe9..d10ee351 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -210,10 +210,9 @@ - profanity - python - python-certbot-apache - - python-flask + - python3-flask # - python-pip # - python-potr - - python-twisted - python3 - python3-django - python3-flask From 5c53230537f66c2efebc78c18cfb1e9d525867ee Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 5 Dec 2020 15:16:04 +0100 Subject: [PATCH 277/356] Move the running process to its function --- roles/common/files/ansible-run | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index 28737e06..1e690894 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -1,14 +1,19 @@ #!/bin/bash export RUNNING="/dev/shm/ansible_is_running" +ansible_is_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 +} + 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 + ansible_is_running touch /dev/shm/ansible-hook-last-run rm $RUNNING exit 0 From c21c6a7f55319f36ec3ef720a9940bb77ded2c6d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 5 Dec 2020 18:09:03 +0100 Subject: [PATCH 278/356] replace last run variable --- roles/common/files/ansible-run | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index 1e690894..fd215ea9 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -1,5 +1,6 @@ #!/bin/bash export RUNNING="/dev/shm/ansible_is_running" +export HOOK="/dev/shm/ansible-hook-last-run" ansible_is_running() { @@ -10,11 +11,9 @@ ansible_is_running() if [ -f $RUNNING ]; then echo "Ansible is currently running." - exit 1 else touch $RUNNING ansible_is_running - touch /dev/shm/ansible-hook-last-run + touch $HOOK rm $RUNNING - exit 0 fi From 88bb586da534bda6975a2bdbcb2c36e1053451c9 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 5 Dec 2020 18:36:23 +0100 Subject: [PATCH 279/356] Ansible setscheduler added. --- roles/common/files/ansible-run | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index fd215ea9..34dc6153 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -1,6 +1,7 @@ #!/bin/bash export RUNNING="/dev/shm/ansible_is_running" export HOOK="/dev/shm/ansible-hook-last-run" +export SCHED="/dev/shm/ansible_scheduler" ansible_is_running() { @@ -9,11 +10,18 @@ ansible_is_running() /usr/local/bin/ansible-playbook -i /var/thunix/ansible/hosts /var/thunix/ansible/site.yml -u root } +# sets ansible scheduling +touch $SCHED + if [ -f $RUNNING ]; then echo "Ansible is currently running." else - touch $RUNNING - ansible_is_running - touch $HOOK - rm $RUNNING + while [ -f $SCHED ] + do + rm $SCHED + touch $RUNNING + ansible_is_running + touch $HOOK + rm $RUNNING + done fi From 777f51f5f0d77371b1a998385b222a9f60f6bfb2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 5 Dec 2020 19:03:40 +0100 Subject: [PATCH 280/356] Adding user 1eye --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/1eye.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/1eye.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7f7f3fdb..eeb7f25c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -305,3 +305,4 @@ - include: users/julianmarcos.yml - include: users/jjasghar.yml - include: users/novaburst.yml +- include: users/1eye.yml diff --git a/roles/shell/tasks/users/1eye.yml b/roles/shell/tasks/users/1eye.yml new file mode 100644 index 00000000..a07c9a49 --- /dev/null +++ b/roles/shell/tasks/users/1eye.yml @@ -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" From e3493afa7c86bee1b7760b83d6278b12c06071c6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 5 Dec 2020 19:23:46 +0100 Subject: [PATCH 281/356] Move start and end inside the function --- roles/common/files/ansible-run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index 34dc6153..31b3341e 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -5,9 +5,11 @@ export SCHED="/dev/shm/ansible_scheduler" ansible_is_running() { + 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 + rm $RUNNING } # sets ansible scheduling @@ -19,9 +21,7 @@ else while [ -f $SCHED ] do rm $SCHED - touch $RUNNING ansible_is_running touch $HOOK - rm $RUNNING done fi From 8d525a726f30665b696f1c689656a67ef421138e Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 5 Dec 2020 21:00:44 -0500 Subject: [PATCH 282/356] cypok account unenforced in ansible --- roles/shell/tasks/users/cypok.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 roles/shell/tasks/users/cypok.yml diff --git a/roles/shell/tasks/users/cypok.yml b/roles/shell/tasks/users/cypok.yml deleted file mode 100644 index 90d2c42d..00000000 --- a/roles/shell/tasks/users/cypok.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up cypok - user: - name: cypok - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/cypok -- authorized_key: - user: cypok - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDBkpbXReV5vuA5OReSOA3F9zJoqE3GVebkqnJccfEPeLpt34BfuWgRgWMeMO0Ja+AQoXW0sZnpre7/0971Xj+eG+hgm7qkOzvIpJHeX3Qp5zxARDS69LQYYOKEzkNfNatxK5FP42IAKtJzCl2HX2kq4k4xLWC6nfZ3rN3nxsFGcgvVXICV7t0zEgFC+weyYdijr5Z2D6B3NGln6CPTkqpmgI2tyCfYD/a2Oi2M23SzinkxDgZniTo2MzzqmjBk3piwNQOZYryysu+ZOF6F6x1XddD8b+yX0VjJqeNVjPKXkRKKcEuwx7mfOVQbIDzoYygTGiSrliQLhZZ19gT623mj cypok@de1" From 19ced42e6bfd243baa31b05301e5252e3800b52f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 16:32:19 +0100 Subject: [PATCH 283/356] Only touch and remove it once --- roles/common/files/ansible-run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index 31b3341e..1dda298d 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -5,11 +5,9 @@ export SCHED="/dev/shm/ansible_scheduler" ansible_is_running() { - 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 - rm $RUNNING } # sets ansible scheduling @@ -18,10 +16,12 @@ touch $SCHED if [ -f $RUNNING ]; then echo "Ansible is currently running." else + touch $RUNNING while [ -f $SCHED ] do rm $SCHED ansible_is_running touch $HOOK done + rm $RUNNING fi From 79f2f951ad1fec473c40da3c5796af9daf41f441 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 16:36:04 +0100 Subject: [PATCH 284/356] Adding user kubikpixel --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/kubikpixel.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/kubikpixel.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index eeb7f25c..708d6dd3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -306,3 +306,4 @@ - include: users/jjasghar.yml - include: users/novaburst.yml - include: users/1eye.yml +- include: users/kubikpixel.yml diff --git a/roles/shell/tasks/users/kubikpixel.yml b/roles/shell/tasks/users/kubikpixel.yml new file mode 100644 index 00000000..66f11fbe --- /dev/null +++ b/roles/shell/tasks/users/kubikpixel.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up kubikpixel + user: + name: kubikpixel + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/kubikpixel +- authorized_key: + user: kubikpixel + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDoDPnGol5U9WIcyjsYsogkpvdBtw+9buBSLzl2D5QyXlLYNfLh5MTBhThIcIZSPWvXArD0TcWYIG2xD1hlFwSuUoTDE7/vtDq47Mc91ReV1bAOFGjot18VKe1FdeAXZdubYmukz/QaIa8odGhTC9Zt0WOHLJDjzj+nLhS0sOdrgIGAQCvm5RSB/fFJSzGGe6RxdhhzWx1AB+l7PfYWgRCZy+Zu44ZUhEi/8niIVg2edRfiUDjYK3c4hOLpeg71L/Mb+uD82zDJXC86UyjvA1zzOg/T3smX6nlEP3v57YnMZ0Q/tvc85hdKzJbEty842Fg/m1FQsDZ1UCbEkuDMba9P tilde" From 64aee6b8dc4e2910f726e5d3d44d9b1bc4531e89 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 21:04:12 +0100 Subject: [PATCH 285/356] something happened to rmuser script --- roles/shell/tasks/users.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 708d6dd3..414620a1 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -301,7 +301,6 @@ - include: users/q45.yml - include: users/earne.yml - include: users/Raoul69.yml -- include: users/cypok.yml - include: users/julianmarcos.yml - include: users/jjasghar.yml - include: users/novaburst.yml From dc87f27c412ccfdba51132f0f5a63c299266b0a6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 21:31:07 +0100 Subject: [PATCH 286/356] previously pruned user cleanup --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/nikita.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/nikita.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 414620a1..636a8343 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -255,7 +255,6 @@ - include: users/beneskiwik.yml - include: users/nikto.yml - include: users/seerlite.yml -#- include: users/nikita.yml - include: users/pokemongo.yml - include: users/prashantch.yml - include: users/Xiboon.yml diff --git a/roles/shell/tasks/users/nikita.yml b/roles/shell/tasks/users/nikita.yml deleted file mode 100644 index 52e880ca..00000000 --- a/roles/shell/tasks/users/nikita.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up nikita - user: - name: nikita - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/nikita -- authorized_key: - user: nikita - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC6O5CxTkf83kta6jaaVvskpPy0H9iTmHj8E72CwXWjQivVhD0pI61UA3Q3lON+8tTMp/kyUGPuNeBXYNENUJAfbvPeHm6S7Ihzlm/5ieMmjPTJgnr7KpWQNREpgD3Vlwl0Fg4PonSWm8ZwTY+cyPZ/s6BOtWubmRPN+DmXnyDAEyzEEjefP8/P16X6AvaAovCrsXTY+OdVxwi9EGF49oGf8IoNTUbwTCivsfNxQty6UqG3NZS96re4MoySGCsSNABmS4wu13JezNiwsBzbBf6nDo/b9LC/ACxzvaQ7Rr47iyhaH5OgJEfijaW+59Pteb+noMna0+gpJQNod3vi+og4cCOxCo+nxSO4OByPC0N0LkpTD2l7UxWqXgWk+KGP1733OSUxtM9fyK+U+xjd0chhrpYbFM2EF0gzgO7opC7itDBYd66VXQerM/DVNMnO3Fl8prh9NER6Qt2dpQa11H6S+gWIesIPscaq9U3+5hzCK1CXPiFImKVo0xW1RyYgbM504dNvavdQeYOg1iRhwBtcQpxXYQvItUIA/cBF78biJXzUMG2Kv7JSjxb3e8Fkh3jlJRdV6u8JkhF3nosQH9CrvIhCH6VCQgFv4lxZg6eL4F6Pr6CBlY7kdDSQ8xcgBsE9MYj04mXQzyns1PZ6FsBB6r8aSP199NBLUEl9Hg22OQ== nikita@yevdokimov" From 9611b0675afbcf256e1a97ed6b16401ca10a07e3 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 21:45:53 +0100 Subject: [PATCH 287/356] igor account unenforced in ansible --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/igor.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/igor.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 636a8343..48d3403e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -241,7 +241,6 @@ - include: users/farooqkz.yml - include: users/hellspawn.yml - include: users/kuldar.yml -#- include: users/igor.yml - include: users/randocontent.yml - include: users/chris.yml - include: users/Cropt0.yml diff --git a/roles/shell/tasks/users/igor.yml b/roles/shell/tasks/users/igor.yml deleted file mode 100644 index 56b9be58..00000000 --- a/roles/shell/tasks/users/igor.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up igor - user: - name: igor - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/igor -- authorized_key: - user: igor - state: present - key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMDy+FMkM8Dhjj57dIZa6Aw3nvBIHiIzBU/rwNtOL20V" From 9849c2a57f4aca1d61bf6fdb9f13fdd24665fb84 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 21:52:06 +0100 Subject: [PATCH 288/356] User previously pruned cleanup --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/rozhik.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/rozhik.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 48d3403e..aae14fa9 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -227,7 +227,6 @@ - include: users/duitser.yml - include: users/lonely-wolf.yml - include: users/cloverfield.yml -#- include: users/rozhik.yml - include: users/ComputerTech.yml - include: users/noteness.yml - include: users/baloo.yml diff --git a/roles/shell/tasks/users/rozhik.yml b/roles/shell/tasks/users/rozhik.yml deleted file mode 100644 index f58da7f2..00000000 --- a/roles/shell/tasks/users/rozhik.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up rozhik - user: - name: rozhik - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/rozhik -- authorized_key: - user: rozhik - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOCinZ1M6yB0NikiJQaUuHZvXod7Z4iEimvJ2cFAgDgiwGcTjFSkTKyynCwT0lWFpYFd+dv2ZJ/A+vo2sLsp5HpH2nTwAMy37C0tFM+HpgdIdeupMk+OQe1qbmdpY0AyGkzWOfYvOGdi9aWVerEsMbSXfXIFFyeSkRhr9MglZKaEWBFbx8YLqiAqOufuIrGkcVN++IiU8OSIO3BpKUjRIfJodjGlZ3nytESBsLjQCz1Medeqtvt0vPY75TbRqr1eHsfIghLTCUjYUCIjEzFEYWP3X9b4c/Rf4uK0fvYnh0d9K2aeVCEWTAD/bQa57oE4c2wggJ5jaqHwOO7aNizF5h leonid@i.am.fromhell.lv" From 43756c3141c0233d8ec8164f8e9e27df44ead0cc Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 7 Dec 2020 22:12:28 +0100 Subject: [PATCH 289/356] Users previously prunned: cleanup --- roles/shell/tasks/users.yml | 7 ------- roles/shell/tasks/users/dalist.yml | 15 --------------- roles/shell/tasks/users/dingb4t.yml | 15 --------------- roles/shell/tasks/users/info.yml | 16 ---------------- roles/shell/tasks/users/infoTV.yml | 16 ---------------- roles/shell/tasks/users/orliesaurus.yml | 15 --------------- roles/shell/tasks/users/stereo.yml | 15 --------------- roles/shell/tasks/users/techemporium.yml | 15 --------------- 8 files changed, 114 deletions(-) delete mode 100644 roles/shell/tasks/users/dalist.yml delete mode 100644 roles/shell/tasks/users/dingb4t.yml delete mode 100644 roles/shell/tasks/users/info.yml delete mode 100644 roles/shell/tasks/users/infoTV.yml delete mode 100644 roles/shell/tasks/users/orliesaurus.yml delete mode 100644 roles/shell/tasks/users/stereo.yml delete mode 100644 roles/shell/tasks/users/techemporium.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index aae14fa9..be1b420f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -43,14 +43,12 @@ - include: users/cyber.yml - include: users/cyphyx.yml - include: users/d34d.yml -#- include: users/dalist.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/dingb4t.yml #- include: users/dot.yml - include: users/dovahkin.yml #- include: users/dragon.yml @@ -73,8 +71,6 @@ #- include: users/hexhaxtron.yml #- include: users/hijaben.yml - include: users/hitomi.yml -#- include: users/info.yml -#- include: users/infoTV.yml #- include: users/init0.yml #- include: users/isaac.yml - include: users/jac98.yml @@ -113,7 +109,6 @@ - include: users/neo.yml - include: users/noce.yml - include: users/olya.yml -#- include: users/orliesaurus.yml #- include: users/os.yml #- include: users/panzer.yml #- include: users/parik.yml @@ -144,10 +139,8 @@ - include: users/southerntofu.yml #- include: users/spanmer.yml #- include: users/stenli990801.yml -#- include: users/stereo.yml - include: users/swann.yml #- include: users/syncore.yml -#- include: users/techemporium.yml - include: users/thekingofbandit.yml #- include: users/tomjerr.yml - include: users/transfusion.yml diff --git a/roles/shell/tasks/users/dalist.yml b/roles/shell/tasks/users/dalist.yml deleted file mode 100644 index d179580d..00000000 --- a/roles/shell/tasks/users/dalist.yml +++ /dev/null @@ -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" \ No newline at end of file diff --git a/roles/shell/tasks/users/dingb4t.yml b/roles/shell/tasks/users/dingb4t.yml deleted file mode 100644 index 8f373623..00000000 --- a/roles/shell/tasks/users/dingb4t.yml +++ /dev/null @@ -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==" diff --git a/roles/shell/tasks/users/info.yml b/roles/shell/tasks/users/info.yml deleted file mode 100644 index 73fe934c..00000000 --- a/roles/shell/tasks/users/info.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -- name: Setting up info - user: - name: info - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/info - -- authorized_key: - user: info - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMK4H6kDNDqkda/JkeEVcQcU1sn/zAh8W6KnP/EyZ2hUqvqiCG8f441DCE9dJCq7ZB/xM4TLAFr/UVfdqoGdyiAf5LtBwGydz1AJqF7PRVvYnE8knO1p8HH5nx1jSYFHIXoS3grvVSbyUzJkYR1V22xjxjyhpOjjAXwHAhYQHVpbspVQHCE3gHNU1zvYwAP1pBqWGtTGKMATtMz6ECcl3d4jhCrkq2wVoTOWDSzBvfOOmxW3WnI/AD9q2W71tEeymVBkgJ/2jfrVa3mKP4/ng9jsva/Tes4gxwFduZMxcXt2Hpf+v3dC/rlqYPKGRkf1N+UmnlCpmGuMDpTWUJix9f thunixshell" diff --git a/roles/shell/tasks/users/infoTV.yml b/roles/shell/tasks/users/infoTV.yml deleted file mode 100644 index 23236b31..00000000 --- a/roles/shell/tasks/users/infoTV.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -- name: Setting up info - user: - name: infoTV - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/infoTV - -- authorized_key: - user: infoTV - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCMK4H6kDNDqkda/JkeEVcQcU1sn/zAh8W6KnP/EyZ2hUqvqiCG8f441DCE9dJCq7ZB/xM4TLAFr/UVfdqoGdyiAf5LtBwGydz1AJqF7PRVvYnE8knO1p8HH5nx1jSYFHIXoS3grvVSbyUzJkYR1V22xjxjyhpOjjAXwHAhYQHVpbspVQHCE3gHNU1zvYwAP1pBqWGtTGKMATtMz6ECcl3d4jhCrkq2wVoTOWDSzBvfOOmxW3WnI/AD9q2W71tEeymVBkgJ/2jfrVa3mKP4/ng9jsva/Tes4gxwFduZMxcXt2Hpf+v3dC/rlqYPKGRkf1N+UmnlCpmGuMDpTWUJix9f thunixshell" diff --git a/roles/shell/tasks/users/orliesaurus.yml b/roles/shell/tasks/users/orliesaurus.yml deleted file mode 100644 index 5146c967..00000000 --- a/roles/shell/tasks/users/orliesaurus.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up orliesaurus - user: - name: orliesaurus - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/orliesaurus -- authorized_key: - user: orliesaurus - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAo4kRIK2l8i0Jb7NsWkETg+xP2on/HZCA8O1JhbIYYcuwWEJg+MZ5HyQzm/pt7uXCrIKJOGi2HvZ88ZOhs59IzQ2js3inVrbL910dcdvIvsJiyh6VbjWnpS5QP320VYkBL4cqC6bcpdKfHB5X7fZM00+5a/i61Xez2tXsd6SgQ1kWg5K1crrPDf+B2Ebc+Z71hFfSfeYeoD9ccerW10XGKu36KO8oLw1+gb8rOLpPHvb/+Pcct9+ZqS4ZzdkdIkdxMxG+zgwX2f1ZrYeWoXYR2fEKm/9KuGO1dg/X2VHrS7+OhOC3eoXWsPDWNNS1lKasOykJTp+G1P2VIQOHD9CDwQ==" diff --git a/roles/shell/tasks/users/stereo.yml b/roles/shell/tasks/users/stereo.yml deleted file mode 100644 index d4a178c4..00000000 --- a/roles/shell/tasks/users/stereo.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up stereo - user: - name: stereo - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/stereo -- authorized_key: - user: stereo - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAg6iSwvtUxZ566PY/WiROmXbosiaKrwmmYLgFTKTF9fU9QU7qzi4AIKPqgIn0tXskmgs0vdweCzLOZ3S+iQSpV55n2fLMd695p7+i/RSVHojCxYDtQ0eMzEC9/fDlFJ3+cVzQu2vnNvT5pxZ3t7CET0UhZclaOvmsU7rSUrS0jGo6Dh3RC2zaXT+/Agxi3+mtraCPSLvfrzfmgN2urTHQTeD8O9FwRbStRJx0xar5RlAH41k0nCvZMkucKmCpfzsQB9yVEdxl9tWULHYYkW5zVdVIvtq2DT3hg8cPquXR2nqWRVlrEHm9thxoT2RWQ3eHqk3l9j/jths6nqn9tv2dUw==" diff --git a/roles/shell/tasks/users/techemporium.yml b/roles/shell/tasks/users/techemporium.yml deleted file mode 100644 index e93675ba..00000000 --- a/roles/shell/tasks/users/techemporium.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up techemporium - user: - name: techemporium - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/techemporium -- authorized_key: - user: techemporium - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQBmQYhcyYJ/YqVsmoqEnyGwiftKgrsnC5oPy0YuLBVg/3t9ps3HG4SBOSqsMn+W6pRGyvXKOoBAH6Dq59OBw7gTiFaVylzx2+ADPpPleTxyyBWAB9qksh/dv0ovu3APvSQMkWvuibmEAW294WpCd5Gk5rZJ5RIyfaGLgRS5ue50+nUgruIOz2SPSeGuNw9O3Brg+33bRM5Bv9MysI5p1rjip13tHcIOBPoPO/R2APew3a6YG6L+95D5HO0DW3A/4snKzrLDTtCDR7NsdOOIYqqsBiQIkgaNvPnP0f5iVZCJm8qw9+eM8u/EK0k8F/GQ8FDht7IrnN9Q6n3D9kVrWLa/" From c5053ab28ee7e515319650e6023051b53994e581 Mon Sep 17 00:00:00 2001 From: owen Date: Mon, 7 Dec 2020 21:21:12 +0000 Subject: [PATCH 290/356] Update 'roles/shell/tasks/users/xfnw.yml' --- roles/shell/tasks/users/{lickthecheese.yml => xfnw.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename roles/shell/tasks/users/{lickthecheese.yml => xfnw.yml} (71%) diff --git a/roles/shell/tasks/users/lickthecheese.yml b/roles/shell/tasks/users/xfnw.yml similarity index 71% rename from roles/shell/tasks/users/lickthecheese.yml rename to roles/shell/tasks/users/xfnw.yml index f3638a2f..c3b12e3f 100644 --- a/roles/shell/tasks/users/lickthecheese.yml +++ b/roles/shell/tasks/users/xfnw.yml @@ -1,15 +1,15 @@ --- -- name: Setting up lickthecheese +- name: Setting up xfnw user: - name: lickthecheese + name: xfnw groups: tilde state: present skeleton: /etc/skel shell: /bin/bash system: no createhome: yes - home: /home/lickthecheese + home: /home/xfnw - authorized_key: - user: lickthecheese + user: xfnw state: present key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGWrzyntW1bgfQ10SBIOMR0ZBkLVtBL1OAGzC2nmUGds ltc@cbarchbtw" From 94c7a2ef017c669366e2aa2a653dd3c0cfdbbd6c Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 10 Dec 2020 16:45:00 +0100 Subject: [PATCH 291/356] Remove non essential function --- roles/common/files/ansible-run | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/roles/common/files/ansible-run b/roles/common/files/ansible-run index 1dda298d..b1da10b5 100644 --- a/roles/common/files/ansible-run +++ b/roles/common/files/ansible-run @@ -3,13 +3,6 @@ export RUNNING="/dev/shm/ansible_is_running" export HOOK="/dev/shm/ansible-hook-last-run" export SCHED="/dev/shm/ansible_scheduler" -ansible_is_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 -} - # sets ansible scheduling touch $SCHED @@ -17,10 +10,12 @@ if [ -f $RUNNING ]; then echo "Ansible is currently running." else touch $RUNNING + cd /var/thunix/ansible while [ -f $SCHED ] do rm $SCHED - ansible_is_running + /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 From f6d22fa80584bdb7a33a2269ae5d31db77ac21f3 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 10 Dec 2020 16:50:14 +0100 Subject: [PATCH 292/356] Adding user deli --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/deli.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/deli.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index be1b420f..dae6a1c3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -296,3 +296,4 @@ - include: users/novaburst.yml - include: users/1eye.yml - include: users/kubikpixel.yml +- include: users/deli.yml diff --git a/roles/shell/tasks/users/deli.yml b/roles/shell/tasks/users/deli.yml new file mode 100644 index 00000000..8357fb63 --- /dev/null +++ b/roles/shell/tasks/users/deli.yml @@ -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" From 1cb89cc3bd37def7c367c855fa5121fee0f0889a Mon Sep 17 00:00:00 2001 From: Julian Jarabo Date: Sat, 12 Dec 2020 11:55:15 +0100 Subject: [PATCH 293/356] Add cmatrix package --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index d10ee351..dd54f77e 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -77,6 +77,7 @@ - cmake - cmake-curses-gui - cmark + - cmatrix - context - cowsay - devscripts From ad2046133c17ddc1203e0446b0d7344925972cea Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 13 Dec 2020 22:41:08 +0100 Subject: [PATCH 294/356] Adding user fltk --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/fltk.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/fltk.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index dae6a1c3..7ee12e88 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -297,3 +297,4 @@ - include: users/1eye.yml - include: users/kubikpixel.yml - include: users/deli.yml +- include: users/fltk.yml diff --git a/roles/shell/tasks/users/fltk.yml b/roles/shell/tasks/users/fltk.yml new file mode 100644 index 00000000..5b1281bd --- /dev/null +++ b/roles/shell/tasks/users/fltk.yml @@ -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=" From 0a1d8ea21e12c8ca5036f269ea1da95f311f54e2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 13 Dec 2020 22:52:56 +0100 Subject: [PATCH 295/356] Fix: rename lickthecheese to xfnw --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7ee12e88..eb610666 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -209,7 +209,7 @@ - include: users/resultcek.yml - include: users/rohs.yml - include: users/lukewarmcat.yml -- include: users/lickthecheese.yml +- include: users/xfnw.yml - include: users/faabb.yml - include: users/gfunkmonk.yml - include: users/maqsoodyaqub.yml From 76fb64db543ccd85f7740efcd2ce27354eb8da1b Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 16 Dec 2020 11:56:41 +0100 Subject: [PATCH 296/356] Remove ServerAlias to avoid duplicate content --- .../files/etc/apache2/sites-available/mightywcms.thunix.conf | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf index 7578ba23..8d7f26c8 100644 --- a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf +++ b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf @@ -1,7 +1,6 @@ ServerAdmin naglfar@thunix.net ServerName mightywcms.thunix.net - ServerAlias mightywcms.thunix.cf DocumentRoot /var/www/MightyWCMS ErrorLog ${APACHE_LOG_DIR}/error_mightywcms.log CustomLog ${APACHE_LOG_DIR}/access_mightywcms.log combined From e7a624655225daeb6a7a083dfe0633d1d8080265 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 16 Dec 2020 12:28:10 +0100 Subject: [PATCH 297/356] rename file --- .../{mightywcms.thunix.conf => mightywcms.thunix.net.conf} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename roles/webserver/files/etc/apache2/sites-available/{mightywcms.thunix.conf => mightywcms.thunix.net.conf} (100%) diff --git a/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf b/roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.net.conf similarity index 100% rename from roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.conf rename to roles/webserver/files/etc/apache2/sites-available/mightywcms.thunix.net.conf From 5d1bc28ff10456f8d05dcf05cb824d165e7bb311 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 16 Dec 2020 12:51:52 +0100 Subject: [PATCH 298/356] Removed: it's not enabled. --- roles/webserver/tasks/apache.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/roles/webserver/tasks/apache.yml b/roles/webserver/tasks/apache.yml index c8db239d..12656308 100644 --- a/roles/webserver/tasks/apache.yml +++ b/roles/webserver/tasks/apache.yml @@ -18,7 +18,6 @@ - default-ssl - thunix.cf - www.thunix.cf - - ftp.thunix.cf - thunix.net - www.thunix.net - ftp.thunix.net @@ -40,7 +39,6 @@ - default-ssl - thunix.cf - www.thunix.cf - - ftp.thunix.cf - thunix.net - www.thunix.net - ftp.thunix.net From 09eff5b2683855d53b90fa5a54b7ad57993095ff Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 16 Dec 2020 13:17:38 +0100 Subject: [PATCH 299/356] Rename link to target directory --- .../files/etc/apache2/sites-available/ftp.thunix.net.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/webserver/files/etc/apache2/sites-available/ftp.thunix.net.conf b/roles/webserver/files/etc/apache2/sites-available/ftp.thunix.net.conf index 046cfb95..00c10012 100644 --- a/roles/webserver/files/etc/apache2/sites-available/ftp.thunix.net.conf +++ b/roles/webserver/files/etc/apache2/sites-available/ftp.thunix.net.conf @@ -2,14 +2,14 @@ ServerAdmin webmaster@thunix.net ServerName ftp.thunix.net ServerAlias ftp.thunixme5v4rnoby.onion - DocumentRoot /var/www/ftp.thunix.cf + DocumentRoot /var/ftp ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined Order deny,allow Deny from all - + IndexOptions FancyIndexing NameWidth=* FoldersFirst ScanHTMLTitles DescriptionWidth=* HeaderName HEADER.html ReadmeName README.html @@ -22,14 +22,14 @@ ServerAdmin webmaster@thunix.net ServerName ftp.thunix.net - DocumentRoot /var/www/ftp.thunix.cf + DocumentRoot /var/ftp ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined Order deny,allow Deny from all - + IndexOptions FancyIndexing NameWidth=* FoldersFirst ScanHTMLTitles DescriptionWidth=* HeaderName HEADER.html ReadmeName README.html From 858290ee8e3065420816b21054c79360dd992c50 Mon Sep 17 00:00:00 2001 From: rany Date: Wed, 16 Dec 2020 14:05:38 +0000 Subject: [PATCH 300/356] Add flatpak and flatpak-builder --- roles/shell/tasks/packages.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index d10ee351..5a8d6f43 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -94,6 +94,8 @@ - finger - fingerd - fish + - flatpak + - flatpak-builder - flex - fortune - frotz From 4e2d7e92bb04b993324c8133d486fb9866dfbcce Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 19 Dec 2020 18:44:38 +0100 Subject: [PATCH 301/356] Use the same date and path --- roles/shell/files/usr/local/bin/backup | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index f921e72d..4c55ed03 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,6 +1,9 @@ #!/bin/bash -mysqldump --all-databases > /var/backups/all_databases.sql +DATE=$(date +%Y%m%d) +PATH='/var/backups' + +mysqldump --all-databases > $PATH/all_databases.sql tar -cvz \ --exclude ".nobackup" \ @@ -20,11 +23,11 @@ tar -cvz \ /var/lib/bzflag/ \ /var/spool/cron/ \ /var/spool/anacron/ \ - /var/backups/all_databases.sql \ - -f /var/backups/`date +%Y%m%d`.tgz + $PATH/all_databases.sql \ + -f $PATH/$DATE.tgz -chown root:sudo /var/backups/$(date +%Y%m%d).tgz -chmod 640 /var/backups/*.tgz +chown root:sudo $PATH/$DATE.tgz +chmod 640 $PATH/*.tgz -find /var/backups -name "*.tgz" -mtime +3 -exec rm {} \; -rm /var/backups/all_databases.sql +find $PATH -name "*.tgz" -mtime +3 -exec rm {} \; +rm $PATH/all_databases.sql From b8679ec0d9bd80d8fdaf2992364f7f2a144aef33 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 19 Dec 2020 19:15:13 +0100 Subject: [PATCH 302/356] Dump and tar sql backup --- roles/shell/files/usr/local/bin/backup | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 4c55ed03..b113e600 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -3,8 +3,6 @@ DATE=$(date +%Y%m%d) PATH='/var/backups' -mysqldump --all-databases > $PATH/all_databases.sql - tar -cvz \ --exclude ".nobackup" \ --exclude "nobackup" \ @@ -23,10 +21,13 @@ tar -cvz \ /var/lib/bzflag/ \ /var/spool/cron/ \ /var/spool/anacron/ \ - $PATH/all_databases.sql \ -f $PATH/$DATE.tgz -chown root:sudo $PATH/$DATE.tgz +mysqldump --all-databases > $PATH/$DATE-all_databases.sql +tar --remove-files -cz $PATH/$DATE-all_databases.sql \ + -f $PATH/$DATE-all_databases.sql.tgz + +chown root:sudo $PATH/$DATE*.tgz chmod 640 $PATH/*.tgz find $PATH -name "*.tgz" -mtime +3 -exec rm {} \; From 8e105f6fe22c9d7cf715f43e9d0f2feede63e923 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 19 Dec 2020 19:26:01 +0100 Subject: [PATCH 303/356] Added a third nameserver meanwhile --- roles/common/files/resolv.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/common/files/resolv.conf b/roles/common/files/resolv.conf index 704937be..744fbb7e 100644 --- a/roles/common/files/resolv.conf +++ b/roles/common/files/resolv.conf @@ -1,3 +1,4 @@ nameserver 127.0.0.1 nameserver 149.56.184.112 +nameserver 94.247.43.254 #nameserver 8.8.8.8 From bb1c0d2932b18d73de4fa4e348f76f78d1d5bb16 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 19 Dec 2020 16:19:31 -0500 Subject: [PATCH 304/356] Adding user login --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/login.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/login.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index eb610666..9c84da9b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -298,3 +298,4 @@ - include: users/kubikpixel.yml - include: users/deli.yml - include: users/fltk.yml +- include: users/login.yml diff --git a/roles/shell/tasks/users/login.yml b/roles/shell/tasks/users/login.yml new file mode 100644 index 00000000..5e82cff1 --- /dev/null +++ b/roles/shell/tasks/users/login.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up login + user: + name: login + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/login +- authorized_key: + user: login + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMzveQi3kks9iA+yBRcanAnQ9/pC1LVMtduvjqktrHBZ" From f6d4a947637052c839bc3e9a872868edff66d9dd Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 20 Dec 2020 00:16:20 +0100 Subject: [PATCH 305/356] script run as daemon, no list files needed --- roles/shell/files/usr/local/bin/backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index b113e600..78c40b98 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -3,7 +3,7 @@ DATE=$(date +%Y%m%d) PATH='/var/backups' -tar -cvz \ +tar -cz \ --exclude ".nobackup" \ --exclude "nobackup" \ --exclude "/home/irc/*" \ From 9c9a4edb1bdd72ad57e273e2f7e2d496b216de6d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 20 Dec 2020 00:23:09 +0100 Subject: [PATCH 306/356] file deleted by tar --- roles/shell/files/usr/local/bin/backup | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 78c40b98..304317bc 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -31,4 +31,3 @@ chown root:sudo $PATH/$DATE*.tgz chmod 640 $PATH/*.tgz find $PATH -name "*.tgz" -mtime +3 -exec rm {} \; -rm $PATH/all_databases.sql From 12a37b4020eafb761ea16320e630e7b6ac427e81 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 20 Dec 2020 23:48:16 +0100 Subject: [PATCH 307/356] PATH is already set --- roles/shell/files/usr/local/bin/backup | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 304317bc..216ea985 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -1,7 +1,7 @@ #!/bin/bash DATE=$(date +%Y%m%d) -PATH='/var/backups' +BACKUPS=/var/backups tar -cz \ --exclude ".nobackup" \ @@ -21,13 +21,13 @@ tar -cz \ /var/lib/bzflag/ \ /var/spool/cron/ \ /var/spool/anacron/ \ - -f $PATH/$DATE.tgz + -f $BACKUPS/$DATE.tgz -mysqldump --all-databases > $PATH/$DATE-all_databases.sql -tar --remove-files -cz $PATH/$DATE-all_databases.sql \ - -f $PATH/$DATE-all_databases.sql.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 $PATH/$DATE*.tgz -chmod 640 $PATH/*.tgz +chown root:sudo $BACKUPS/$DATE*.tgz +chmod 640 $BACKUPS/*.tgz -find $PATH -name "*.tgz" -mtime +3 -exec rm {} \; +find $BACKUPS -name "*.tgz" -mtime +3 -exec rm {} \; From 8cb9be8231a57f855799a50775b38d17879a6c2e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 21 Dec 2020 10:11:07 +0100 Subject: [PATCH 308/356] Clean up, before to create a new one --- roles/shell/files/usr/local/bin/backup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index 216ea985..cb08f095 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -3,6 +3,8 @@ DATE=$(date +%Y%m%d) BACKUPS=/var/backups +find $BACKUPS -name "*.tgz" -mtime +3 -exec rm {} \; + tar -cz \ --exclude ".nobackup" \ --exclude "nobackup" \ @@ -29,5 +31,3 @@ tar --remove-files -cz $BACKUPS/$DATE-all_databases.sql \ chown root:sudo $BACKUPS/$DATE*.tgz chmod 640 $BACKUPS/*.tgz - -find $BACKUPS -name "*.tgz" -mtime +3 -exec rm {} \; From dd341779d7bf6eec2fcab983175b7ab17321532d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 21 Dec 2020 10:20:51 +0100 Subject: [PATCH 309/356] Adding user ricci --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ricci.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ricci.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9c84da9b..c095bb73 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -299,3 +299,4 @@ - include: users/deli.yml - include: users/fltk.yml - include: users/login.yml +- include: users/ricci.yml diff --git a/roles/shell/tasks/users/ricci.yml b/roles/shell/tasks/users/ricci.yml new file mode 100644 index 00000000..f14b8097 --- /dev/null +++ b/roles/shell/tasks/users/ricci.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up ricci + user: + name: ricci + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/ricci +- authorized_key: + user: ricci + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPgV3kcXbeJBaCfjQv2omuPfpe8RkRocv92LVIy8NdkH" From 8c0f236ac7f57636f341c5294495634436c40a4a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 21 Dec 2020 10:36:34 +0100 Subject: [PATCH 310/356] add ircII client --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index d10ee351..1a0daa6e 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -107,6 +107,7 @@ # - ident2 - inkscape - imagemagick + - ircii - irssi - isync - jekyll From ebc39576867c881742bb1e9c69afb613e10bb358 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 22 Dec 2020 14:59:50 +0100 Subject: [PATCH 311/356] Adding user hedy --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/hedy.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/hedy.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c095bb73..8cfef455 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -300,3 +300,4 @@ - include: users/fltk.yml - include: users/login.yml - include: users/ricci.yml +- include: users/hedy.yml diff --git a/roles/shell/tasks/users/hedy.yml b/roles/shell/tasks/users/hedy.yml new file mode 100644 index 00000000..a5529896 --- /dev/null +++ b/roles/shell/tasks/users/hedy.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up hedy + user: + name: hedy + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/hedy +- authorized_key: + user: hedy + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDH3B4ogxuJELUS+6esjEVYlItu1yAeQiwl1ghEng3iHME8LdybakrWKyZ1jGEbAEg8KR3/x/Ypr2ZCFfaAAX3PY11hTMRKxeSwQ75XtvPEiCukF0uB9G6hX8POFQK0KFn3LB00HOc7qMnToRuSrPX+Amryfgbx2TP1MsExr7zuKfwL+OEBwbGMiq2wlDF/Jz3NzbdQh7NfpB4VJx+NNHkeT2sPmSzX48G9goNeWLXFEziTmSnxuhqXbhr/g4Fkhqh4lfgbj1pbj93Mzys1MJYfphvq9cZpminTOM0M98vw+zOf0bxxV55dpoQksxISQX4VoS8MPFZi+gU9ABzKPn41qSdt71p+hIhCmwIwCwzkPXk+bRM/b0BRQNDdh1RqlSXenZmhObSKQTfWWYIY7DXe7tH0cfl82/VNCGKkm06J7DOb1a4YHsKenhc9EpkF18PRNH9/++j6lyESMbmyszwZOHwCvEzRjSPFGj79Q1HGLjR07Bq0GrCBGtNBjy28ctgWx/1ZcmlrmBw+Uy4IVyTKQDM9haTAqKQ/JPXJu5H3JiaqjrwkiMDHqon8lm1P7J1smWYHrtEkZYx89haNfOA8pAQCeR1D1yXuNmPBLUnW2G0HP7RGRnQBiFXep5Wz0LLastQZCnQzNoLWUoaefbMEwKul40wUUvNAd9v1Kqi0JQ==" From f1f2deada70d16b20ac9dc36054a16662120805a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 22 Dec 2020 20:18:39 +0100 Subject: [PATCH 312/356] Adding user Tintle --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Tintle.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Tintle.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 8cfef455..de9a773b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -301,3 +301,4 @@ - include: users/login.yml - include: users/ricci.yml - include: users/hedy.yml +- include: users/Tintle.yml diff --git a/roles/shell/tasks/users/Tintle.yml b/roles/shell/tasks/users/Tintle.yml new file mode 100644 index 00000000..b617e733 --- /dev/null +++ b/roles/shell/tasks/users/Tintle.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up Tintle + user: + name: Tintle + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/Tintle +- authorized_key: + user: Tintle + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOHPQ6Bk37lpfSrKVqt56BnsKy8u6vxXVLU4iAK/0bF7Zpb2kKWX3dhwJHo96djTq6cLog5eZFyrxLm75jHLnDW435LVVFjGvA6Mu1+ca21mZaX3WQE3uZUA8kdHTsl0CI0H2fRW23trru4kCiWAAiWhn8gz0MkJ8sKwSATQLK2ztxaxzOwF1HKqyqa6c0HYHOlPQbL6HyqG3fIRCUPj1EuYBH3DGAwSKCYGDZ0dEBJ7gHDl8EgBBY71O/K0vxSzS6TYWhqkEyfupFjP/gBcJfjLGGlfpyShtg9VgdvEsvHv8IYIlik6YfM9M0S/1kKau8abNS2xzfGG9XeCKJq/st color@Pastelfina" From 97a6b277c7d328f1cb87796c4dc355355961bf35 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 26 Dec 2020 21:58:15 +0100 Subject: [PATCH 313/356] Public key replacement, requested by email --- roles/shell/tasks/users/Tintle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/Tintle.yml b/roles/shell/tasks/users/Tintle.yml index b617e733..2574bda8 100644 --- a/roles/shell/tasks/users/Tintle.yml +++ b/roles/shell/tasks/users/Tintle.yml @@ -12,4 +12,4 @@ - authorized_key: user: Tintle state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDOHPQ6Bk37lpfSrKVqt56BnsKy8u6vxXVLU4iAK/0bF7Zpb2kKWX3dhwJHo96djTq6cLog5eZFyrxLm75jHLnDW435LVVFjGvA6Mu1+ca21mZaX3WQE3uZUA8kdHTsl0CI0H2fRW23trru4kCiWAAiWhn8gz0MkJ8sKwSATQLK2ztxaxzOwF1HKqyqa6c0HYHOlPQbL6HyqG3fIRCUPj1EuYBH3DGAwSKCYGDZ0dEBJ7gHDl8EgBBY71O/K0vxSzS6TYWhqkEyfupFjP/gBcJfjLGGlfpyShtg9VgdvEsvHv8IYIlik6YfM9M0S/1kKau8abNS2xzfGG9XeCKJq/st color@Pastelfina" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAhWX/nWgpr0W7FKHABbdPLB4kw3rhFzEeauauO4dzCwR8y0BuUvWCM0VSKNn6/w4h1Nmfm0q9CSw4uMXIQpO2dBCPbFe2DgNFtN6DYdPLBLZvWPkeM/bhSDS0UtK0kV0c48d+y89etct8dAW6RrqFs/hRYGh6noKSckG3awLFk1EjRqCtQQQWhZQfwcPw4yLcN1/J5d5W1JQvEs8Ugvj791c4mzwHA7UwzTpmakoFHLkwrgHlVfXaQ1/WLUWh+TYZD3pe8a6ox2sG/MnJREVGnVfQj5EwRgSrbrTv/xsRIJ1jmdg/8O1ISUZY56z5NS35NBpaGlJasif1+u4pbeFE3Q==" From 447d167ecad6a5c6329d24d9f1b27a0acec33ad2 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 27 Dec 2020 20:13:19 +0100 Subject: [PATCH 314/356] Update znc datadir --- roles/shell/tasks/znc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/tasks/znc.yml b/roles/shell/tasks/znc.yml index ee584176..b3e21e0e 100644 --- a/roles/shell/tasks/znc.yml +++ b/roles/shell/tasks/znc.yml @@ -2,7 +2,7 @@ --- - name: Create home dirs for znc file: - path: /var/lib/znc/.znc + path: /var/lib/znc state: directory owner: znc group: root @@ -28,7 +28,7 @@ After=network-online.target [Service] - ExecStart=/usr/bin/znc -f --datadir=/var/lib/znc/.znc + ExecStart=/usr/bin/znc -f --datadir=/var/lib/znc ExecReload=/bin/kill -HUP $MAINPID User=znc From d1f5750ae4292afaafd83d4dd8cd6e5d997de6e4 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 27 Dec 2020 21:03:18 +0100 Subject: [PATCH 315/356] Add znc datadir to backup --- roles/shell/files/usr/local/bin/backup | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index cb08f095..b27a796b 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -21,6 +21,7 @@ tar -cz \ /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 From 9e750edd4a5e2eee15fece0d5ce4f2d1d20f4de0 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 30 Dec 2020 05:56:48 +0100 Subject: [PATCH 316/356] Adding user zackward --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/zackward.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/zackward.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index de9a773b..d510a8f7 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -302,3 +302,4 @@ - include: users/ricci.yml - include: users/hedy.yml - include: users/Tintle.yml +- include: users/zackward.yml diff --git a/roles/shell/tasks/users/zackward.yml b/roles/shell/tasks/users/zackward.yml new file mode 100644 index 00000000..bd1a52f6 --- /dev/null +++ b/roles/shell/tasks/users/zackward.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up zackward + user: + name: zackward + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/zackward +- authorized_key: + user: zackward + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDAfn1rpWFgz0MDsjUjYUywNbxIIBER/c01NQJyMwbWJ+DGxOF1wx1sFTkHSfpJDeNg+oY6ddR1MEI8srLjoY90yHmhNrZ1iE72kceI5KKdsJhJMBbILD9fg0MYp7WAoTRZoLelC2XEmdmRqp6fk/gHdBonbktajV32nn2nVub53ABf5ECPC1MMSeeST3l6m9j5DXNmISJByvQiU3ymdOyr/rDF47OwPpiw9DVlF93TbfoEdYtSP9LrDu+MsXlE0/VJsReTGyhS2FYvXH3GYfFoUvaIcgJdCgcXeSm/BdEq+AmpeyIg4zaRlQKCii0b2NQgvocCjMqrIl+RzyWK5FKzNW51VHS/PlnDObJ0fFHfKTlXgHUKmlonygYWuu93pmeu4ihUExtrXcNhWRvyKE8EfrhQoTETsYQItwbgiAyeWI1XgWM8azbeRFJDQNiohgOncS+eT7VuiXi/JosAxsYuyJuIe8CnK+JU/L9m3ois5JRA2UBI7EERKk8Z7b2gz+2gKN+OzpjIfH3KsVlVghGAGoN90/AZIR9Kk2HMX18pqp3R/TEULL5duT26IgwZdfwqVfv/xbasHL2fgnZHmi+UDOJsxnn/KgfHCe6cEdfLt6uhTcuH0LezTo2ncn7a3459P9b+N0o9sCbRppsPXDB/EVumrOwA1f9G9RCo9x7tHQ== SSH" From 02b94a9dfb14c333e736d9925edc57e2841169b7 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 31 Dec 2020 00:48:27 +0100 Subject: [PATCH 317/356] Tintle account unenforced in ansible --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/Tintle.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/Tintle.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d510a8f7..98afe4fb 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -301,5 +301,4 @@ - include: users/login.yml - include: users/ricci.yml - include: users/hedy.yml -- include: users/Tintle.yml - include: users/zackward.yml diff --git a/roles/shell/tasks/users/Tintle.yml b/roles/shell/tasks/users/Tintle.yml deleted file mode 100644 index 2574bda8..00000000 --- a/roles/shell/tasks/users/Tintle.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: Setting up Tintle - user: - name: Tintle - groups: tilde - state: present - skeleton: /etc/skel - shell: /bin/bash - system: no - createhome: yes - home: /home/Tintle -- authorized_key: - user: Tintle - state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAhWX/nWgpr0W7FKHABbdPLB4kw3rhFzEeauauO4dzCwR8y0BuUvWCM0VSKNn6/w4h1Nmfm0q9CSw4uMXIQpO2dBCPbFe2DgNFtN6DYdPLBLZvWPkeM/bhSDS0UtK0kV0c48d+y89etct8dAW6RrqFs/hRYGh6noKSckG3awLFk1EjRqCtQQQWhZQfwcPw4yLcN1/J5d5W1JQvEs8Ugvj791c4mzwHA7UwzTpmakoFHLkwrgHlVfXaQ1/WLUWh+TYZD3pe8a6ox2sG/MnJREVGnVfQj5EwRgSrbrTv/xsRIJ1jmdg/8O1ISUZY56z5NS35NBpaGlJasif1+u4pbeFE3Q==" From 350b0f2826e92e9323aa488211fb96daa0a53d19 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 4 Jan 2021 20:09:18 -0500 Subject: [PATCH 318/356] Making postfix listen on ipv6 too --- roles/shell/files/etc/postfix/main.cf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/shell/files/etc/postfix/main.cf b/roles/shell/files/etc/postfix/main.cf index 0c5744a2..8430109f 100644 --- a/roles/shell/files/etc/postfix/main.cf +++ b/roles/shell/files/etc/postfix/main.cf @@ -38,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/ From 0081e1494b250a66b996eb3b867e2933801731b1 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 5 Jan 2021 13:47:41 +0100 Subject: [PATCH 319/356] Adding user jack --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/jack.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/jack.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 98afe4fb..ab89de62 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -302,3 +302,4 @@ - include: users/ricci.yml - include: users/hedy.yml - include: users/zackward.yml +- include: users/jack.yml diff --git a/roles/shell/tasks/users/jack.yml b/roles/shell/tasks/users/jack.yml new file mode 100644 index 00000000..c8e94803 --- /dev/null +++ b/roles/shell/tasks/users/jack.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up jack + user: + name: jack + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/jack +- authorized_key: + user: jack + state: present + key: "" From e6cea4536ef7ab6bc48483699c62056cd03779bc Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 5 Jan 2021 13:52:26 +0100 Subject: [PATCH 320/356] Fix: key has not been added --- roles/shell/tasks/users/jack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/jack.yml b/roles/shell/tasks/users/jack.yml index c8e94803..4fd5c590 100644 --- a/roles/shell/tasks/users/jack.yml +++ b/roles/shell/tasks/users/jack.yml @@ -12,4 +12,4 @@ - authorized_key: user: jack state: present - key: "" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC0o+fJvQIragvR5swQioCsJ6jrFT17VTP44vmWCN7rT0klAjM/8p/6ItiG6MXJC6Cea41Qnvf6Q5u0x1eRPS5cyPzHSitwiRVKSWM864TOrvUAxEWv5dyCEuxRJf2VxopoZu/yTLACWdLko7znS/hdItdEnoN4xn0Dcskya079iNZYVYFgAclu5xc+0+VtAmO2jNDlcKgYrmBdBZCDKGFHadMlfANWfdABKx+EjvaYQUgf3QZYYCWpmDB64wu+K40U7r/Xg+TtnX4zqp/uHebH/gz+okOtljiIGbguV9SPrM/RgM65RJboMqR3zdr2dNOKPe6nP6qmSZU+05J0MKUx" From 10b217d4f06206363097d3f9d5f34c2f8af06da1 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 7 Jan 2021 23:55:23 +0100 Subject: [PATCH 321/356] Adding user xlamer --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/xlamer.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/xlamer.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index ab89de62..1a3a1e36 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -303,3 +303,4 @@ - include: users/hedy.yml - include: users/zackward.yml - include: users/jack.yml +- include: users/xlamer.yml diff --git a/roles/shell/tasks/users/xlamer.yml b/roles/shell/tasks/users/xlamer.yml new file mode 100644 index 00000000..88c09058 --- /dev/null +++ b/roles/shell/tasks/users/xlamer.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up xlamer + user: + name: xlamer + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/xlamer +- authorized_key: + user: xlamer + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCZujDKbkcZyPMG31VMTGTxXsP80186pVxIR7inqPbtyRXn/hgaevvoFGbxAMRjMfb5zPogz+Gq687cu1uvKGp/nP7nSvgcw50ZUWarSluN3mGAP6Tk4cvSAHO2pzylyE6iVgcaXzexALJ/NFfWJb5PraCi+sExKmXlTjU8DMvfCJTbC+6LZicK5x30QqJG9JD7l8NUDT8rzv6JsJxWn3NXULUTbCBP1NRYJZTWTVFjKr8V1j4I6GdlY15fCxmi9gqBaHWST5dbG5dX+TNGB4ChIKBzkYrj0nlGaowAslvi0Z7GQ7s9R3cNECHWSW9snLeV5aSKRX1dSc2ckuynn+pdzpFZ/+ItgWDQpkhtMAOzHxlnXPnfzzi06d6NIead47Yyd7GHSWixXjBriZyFLhLprWh1sAM78qMDQgLWa9ftneoj08NrmMJpncVTzdv0Z571UKPPbNnGL5U19X6MSXp2NCnBuV1t7GbNYCs4zzPtHb7shObaXNJvJSv7T+K6wxen2dslYor4M2zX/258lFsBo+wgtS3DL0Beanvd1/ZXcEhwBMRSPATlMJQIIJD6nBvhkjuEhds9N3OaqEQEFRRygGhuJhlZYauHdUHQ/SOK4lj9aefR21GUksksHT9L5TDCD3XJjf5Ik71IEuC04yCDzFSA2LFR5/tBeurm+Apzsw== slaserx@lucifer" From 37bead96b5b76fd346daaf74a97c9b53ef1edae6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 8 Jan 2021 21:49:47 +0100 Subject: [PATCH 322/356] Adding user mcornick --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/mcornick.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/mcornick.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 1a3a1e36..e33b9b4e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -304,3 +304,4 @@ - include: users/zackward.yml - include: users/jack.yml - include: users/xlamer.yml +- include: users/mcornick.yml diff --git a/roles/shell/tasks/users/mcornick.yml b/roles/shell/tasks/users/mcornick.yml new file mode 100644 index 00000000..c033161d --- /dev/null +++ b/roles/shell/tasks/users/mcornick.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up mcornick + user: + name: mcornick + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/mcornick +- authorized_key: + user: mcornick + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHdYz/7llKpHco2IzZDW+tLKo+b3hZOecocnFtspIf3E" From 7908c06e1fbda86d39eaf8afb88faabffaa9523f Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 9 Jan 2021 18:48:00 +0100 Subject: [PATCH 323/356] Adding user nyku --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/nyku.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/nyku.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e33b9b4e..7f93d189 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -305,3 +305,4 @@ - include: users/jack.yml - include: users/xlamer.yml - include: users/mcornick.yml +- include: users/nyku.yml diff --git a/roles/shell/tasks/users/nyku.yml b/roles/shell/tasks/users/nyku.yml new file mode 100644 index 00000000..7f4daaf1 --- /dev/null +++ b/roles/shell/tasks/users/nyku.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up nyku + user: + name: nyku + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/nyku +- authorized_key: + user: nyku + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBWeQfllxOhRbsqcjk4bSq3jJWPpB/KP3Mj5RWtvCVPh nyku@nyku" From 2c14e96aafc8b3775aefa952c4c04773586991db Mon Sep 17 00:00:00 2001 From: Naglfar Date: Tue, 12 Jan 2021 13:05:27 +0100 Subject: [PATCH 324/356] Adding user perry --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/perry.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/perry.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 7f93d189..c3470229 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -306,3 +306,4 @@ - include: users/xlamer.yml - include: users/mcornick.yml - include: users/nyku.yml +- include: users/perry.yml diff --git a/roles/shell/tasks/users/perry.yml b/roles/shell/tasks/users/perry.yml new file mode 100644 index 00000000..24ab3067 --- /dev/null +++ b/roles/shell/tasks/users/perry.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up perry + user: + name: perry + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/perry +- authorized_key: + user: perry + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCv742MRGJTZ/8jNKMkOb62oX0auSOI8nNSBwz6+biTe2TWcABC8r16LNwATHZ0D4uteG4EXXILE9QkEK4LCdgHWNGAqI+j1ljOxHAID67pnZSZHGvXzNqyLJzVqm4JwTfPVDMIeJ1temqx3+P3AIgAGnPKrqogkfyLh5WEUYiz7me1J1zd02XAnvGO2I3s+h4+TilZw+hlX4nLDUxLfNEVc/l5DYkaPSQonCLXg9wSHrSHHhyQ9/WDzCBww8nBnOEbIyFwrp08BRocttiPMpArakuRu15iTXBaKL5OxroSsjsGsfM5VNcUIKzaq8kv5LuhWDvWpUxF6JVkIWenFCVWOe6q9IIQnmaAPsDIrFHFX4pJz5q+xS98AsIP7vD0PXugOuBD2xk8zMm8FbCpAaEhk4sCe/bMPjRlaDFH5R8nStsNq8rgE6GLWAxpuAQSDo4KNeCLH0Y/SXg2P35FCf8eeccZc85XgVEwwi4Tt2bYC0IBpq9rOw1qMM0cuTWJECLALZ4VeCpBkImyp/ucN1L03F79JEONIurkd1TMjEXlaT5T7GHsMX6YGplr30/ePHxSjP42joDUb8JdkrgmLXvDwRu6ZNKvy5ZZ8YpJ+ZmJgvW/0vVkxhiBUnbxW68C5a6D1qSRN8OwBHVJ0UD36YpV8lzNvAG4q7Etv54Myri4dw==" From 9d43fe4237af82d43854de2d88b5c9c58a21a086 Mon Sep 17 00:00:00 2001 From: Mark Cornick Date: Fri, 15 Jan 2021 09:40:15 -0500 Subject: [PATCH 325/356] Change my shell to zsh --- roles/shell/tasks/users/mcornick.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/mcornick.yml b/roles/shell/tasks/users/mcornick.yml index c033161d..92e20590 100644 --- a/roles/shell/tasks/users/mcornick.yml +++ b/roles/shell/tasks/users/mcornick.yml @@ -5,7 +5,7 @@ groups: tilde state: present skeleton: /etc/skel - shell: /bin/bash + shell: /bin/zsh system: no createhome: yes home: /home/mcornick From d9a73fc693329588cf6ff55984cb5f8153fbaae7 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 17 Jan 2021 01:50:13 +0100 Subject: [PATCH 326/356] Adding user cptpcrd --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cptpcrd.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cptpcrd.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c3470229..f8e10389 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -307,3 +307,4 @@ - include: users/mcornick.yml - include: users/nyku.yml - include: users/perry.yml +- include: users/cptpcrd.yml diff --git a/roles/shell/tasks/users/cptpcrd.yml b/roles/shell/tasks/users/cptpcrd.yml new file mode 100644 index 00000000..434eb266 --- /dev/null +++ b/roles/shell/tasks/users/cptpcrd.yml @@ -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==" From b5bb726915b0848de0d67123c48ea0792539e6ce Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 17 Jan 2021 22:29:41 +0100 Subject: [PATCH 327/356] Adding user derberger --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/derberger.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/derberger.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index f8e10389..739e2f6c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -308,3 +308,4 @@ - include: users/nyku.yml - include: users/perry.yml - include: users/cptpcrd.yml +- include: users/derberger.yml diff --git a/roles/shell/tasks/users/derberger.yml b/roles/shell/tasks/users/derberger.yml new file mode 100644 index 00000000..1356287e --- /dev/null +++ b/roles/shell/tasks/users/derberger.yml @@ -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" From 25251cfdded0452629c595be1e15738b2333bb0d Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 21 Jan 2021 06:28:58 +0100 Subject: [PATCH 328/356] Adding user exprobitasfiducia --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ExProbitasFiducia.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ExProbitasFiducia.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 739e2f6c..50d8b684 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -309,3 +309,4 @@ - include: users/perry.yml - include: users/cptpcrd.yml - include: users/derberger.yml +- include: users/ExProbitasFiducia.yml diff --git a/roles/shell/tasks/users/ExProbitasFiducia.yml b/roles/shell/tasks/users/ExProbitasFiducia.yml new file mode 100644 index 00000000..81db806f --- /dev/null +++ b/roles/shell/tasks/users/ExProbitasFiducia.yml @@ -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==" From 32ee69a5e20453cabbf277d5b0959f846135fd10 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 21 Jan 2021 07:36:02 +0100 Subject: [PATCH 329/356] Rename ansible task --- .../tasks/users/{ExProbitasFiducia.yml => exprobitasfiducia.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename roles/shell/tasks/users/{ExProbitasFiducia.yml => exprobitasfiducia.yml} (100%) diff --git a/roles/shell/tasks/users/ExProbitasFiducia.yml b/roles/shell/tasks/users/exprobitasfiducia.yml similarity index 100% rename from roles/shell/tasks/users/ExProbitasFiducia.yml rename to roles/shell/tasks/users/exprobitasfiducia.yml From f98a57660bfb404a5d7effe5f225f52e85935186 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 21 Jan 2021 07:40:25 +0100 Subject: [PATCH 330/356] Rename included ansible task --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 50d8b684..9a22c69b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -309,4 +309,4 @@ - include: users/perry.yml - include: users/cptpcrd.yml - include: users/derberger.yml -- include: users/ExProbitasFiducia.yml +- include: users/exprobitasfiducia.yml From e9f5364fd825f17850ae3da9ead89df612470a41 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 21 Jan 2021 22:23:45 +0100 Subject: [PATCH 331/356] Adding user gzj --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gzj.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gzj.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9a22c69b..9dace8ed 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -310,3 +310,4 @@ - include: users/cptpcrd.yml - include: users/derberger.yml - include: users/exprobitasfiducia.yml +- include: users/gzj.yml diff --git a/roles/shell/tasks/users/gzj.yml b/roles/shell/tasks/users/gzj.yml new file mode 100644 index 00000000..3fc46c0d --- /dev/null +++ b/roles/shell/tasks/users/gzj.yml @@ -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" From 7c4f18d91883eeb74c59bbffbfa5a30a44e7d417 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Mon, 25 Jan 2021 09:14:14 -0500 Subject: [PATCH 332/356] Adding user samthecoder --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/samthecoder.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/samthecoder.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 9dace8ed..cb3ace26 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -311,3 +311,4 @@ - include: users/derberger.yml - include: users/exprobitasfiducia.yml - include: users/gzj.yml +- include: users/samthecoder.yml diff --git a/roles/shell/tasks/users/samthecoder.yml b/roles/shell/tasks/users/samthecoder.yml new file mode 100644 index 00000000..c2711442 --- /dev/null +++ b/roles/shell/tasks/users/samthecoder.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up samthecoder + user: + name: samthecoder + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/samthecoder +- authorized_key: + user: samthecoder + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC4KRQp49OZNaWsLqVhAQ1tBlMup9HzQQYwKFDkIUSZ99VRIgr1lPMjrLP4BXq3MoKXW0xz/MoCYDKDGDnATLljuO5dZxHbXMb55XHJrLnlHmgFJLSMqkCKsNvGOOhl9Opp9HQtlDYsecoosTwVIQrgpH/jtGLPJeIwCQ4zD1NkAgkt8kY6lgK9i1wEyKr9G1L7ckUsY4JLtsd1b5EsuoD1N+yPlnVlLuO4K2T+2QGZBt6CXmb5GyQv+hNn+Q6oOO2KKw0zM3FeicED+LbKEzKRxqFlSo/YYxWYwktuZSW0SkBpECsbWDBGxx/WCEYODPq8nomg4UKZNCbFc0DY0ovCrRuRTL+8xcTvXGhcIeBD5yVL82VTMDpCriQ3/nA0codS9CkEyLKj3U9F4l5LpDkPTy7Vs0wlfs7544OIUaXLzJqN1ikg/gxoRpRu0v2a1nSP4t7/O8ITaRHHk0tEHg9axaEJFKR+cbvY/jH8QElLE6HeGqCOorbtSzwsgUHEKh70ZJDF/Tq37J94tRptVMnva+nTW7cKkuoXOzgeDB9cvZJgPUNOvvgPllqtl9TShmk30FqFs3kSwyTHz/sI843dg5hI3R1j8EX/45NQyqAQeWxf7BonZowwFbe9xSfbBQOlqaMOzQ62P49sNVgjPFEKAK5sbEs8gLG452VDSXasvQ==" From 4b35bc8c16e5f794e6405e8b944bc327642a0924 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 28 Jan 2021 06:59:41 -0500 Subject: [PATCH 333/356] Exempting duitser home from backup due to excess size --- roles/shell/files/usr/local/bin/backup | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/files/usr/local/bin/backup b/roles/shell/files/usr/local/bin/backup index b27a796b..b2998e09 100644 --- a/roles/shell/files/usr/local/bin/backup +++ b/roles/shell/files/usr/local/bin/backup @@ -17,6 +17,7 @@ tar -cz \ --exclude='/home/amcclure/*' \ --exclude='/home/fosslinux/*' \ --exclude='/home/zszoke/*' \ + --exclude='/home/duitser/*' \ /home/ \ /var/games/minetest-server/.minetest/ \ /var/lib/minecraft/paperclip/ \ From a61d2afd5e59a941ea3db2083d33208dacb713a6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 29 Jan 2021 04:33:46 +0100 Subject: [PATCH 334/356] Adding user travankor --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/travankor.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/travankor.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index cb3ace26..b565ee7e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -312,3 +312,4 @@ - include: users/exprobitasfiducia.yml - include: users/gzj.yml - include: users/samthecoder.yml +- include: users/travankor.yml diff --git a/roles/shell/tasks/users/travankor.yml b/roles/shell/tasks/users/travankor.yml new file mode 100644 index 00000000..dee65d24 --- /dev/null +++ b/roles/shell/tasks/users/travankor.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up travankor + user: + name: travankor + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/travankor +- authorized_key: + user: travankor + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQD02ZE2PU1XpPgjxLdIyfRt/rFA6puBe2LjrTs27+FVgVP2d9YSrFM0n3xPtshUv6ccuj850Ug2KqMT+9v/fJSaqnKz2P7143xCKlrtSkAsldUUdpYnM2GLGZOcgUfXsZnc8E5FlAY/IE8uSAmyGHlCIgL7yIM8yFlvwieI3gXMdDEBFUvVz8PZle8oNhxuA/YGhh18nUHvB+Zxdp8Cl7S7zu3aL8UbkfmBARD2/h5AluBGoiByfgT58TibDxRHd1ccC7EIkYkZUU42QWWNJcPduNOhWa9E1Qq9HxS1LckEA3SnpKeiQ/SJOOpAAo/iwcIyAl1csIbAMBrXPcXMGJe1tB7jeIpkJUZFcIEpRHqamih6B+8TUG/fywEg3ELPtfInz4M6gKX2zm+bAWXlDWCObj20rTEwN0EuD9Hoo85jZH00/ny7TEMLQSW/Jdoi0nSHQ2KRL0xfKAN3zji1Uq2UZVttPYhb8Ri5iuic4KO59rfwty1YYa6TW336QQwT3wG8AQlES6NMEXIyt6dUB6pDz/CtqUCIqMO0HN50xIjBVHn9BMb9dyB9xx7q6SumQ8BmO15XaOwqfQZ1MPtRI3eHBFNRws1+8JmLLIYwbb6UbvFw2qQVD9Jw61emBy7YX5ltx4N8CVo44gaIXrXZmGrmlRa/i6hn168eVBIXwK0ooQ== travankor@enki" From 452b834e1e47131294080ab7e988d40471d5627f Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Fri, 29 Jan 2021 10:48:19 -0500 Subject: [PATCH 335/356] user prune --- roles/shell/tasks/users.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index b565ee7e..06376d40 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -245,7 +245,7 @@ - include: users/Loial.yml - include: users/beneskiwik.yml - include: users/nikto.yml -- include: users/seerlite.yml +#- include: users/seerlite.yml - include: users/pokemongo.yml - include: users/prashantch.yml - include: users/Xiboon.yml From 532e9e22e537cfe86b371cc5b874ab1d03cd261a Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 29 Jan 2021 23:32:04 +0100 Subject: [PATCH 336/356] Adding user zerw --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/zerw.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/zerw.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 06376d40..12996bad 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -313,3 +313,4 @@ - include: users/gzj.yml - include: users/samthecoder.yml - include: users/travankor.yml +- include: users/zerw.yml diff --git a/roles/shell/tasks/users/zerw.yml b/roles/shell/tasks/users/zerw.yml new file mode 100644 index 00000000..6d3b770a --- /dev/null +++ b/roles/shell/tasks/users/zerw.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up zerw + user: + name: zerw + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/zerw +- authorized_key: + user: zerw + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIISLFIsIe7wueHGATJ7qe4U04RFpOxtCub7UJsnIBRCJ" From 17e39bba942d8eff957bee6ad52f10ba3b0e3160 Mon Sep 17 00:00:00 2001 From: Hristo Date: Fri, 29 Jan 2021 19:45:52 -0500 Subject: [PATCH 337/356] added exa fd bat packages --- roles/shell/tasks/packages.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 73ca8fc8..92976d51 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -64,6 +64,7 @@ - adwaita-icon-theme - analog - autoconf2.13 + - bat - bison - bsdgames - build-essential @@ -88,6 +89,7 @@ - dovecot-core - dovecot-imapd - eggdrop + - exa - elinks - emacs - ffmpeg @@ -95,6 +97,7 @@ - finger - fingerd - fish + - fd - flatpak - flatpak-builder - flex From f32139dbdf4943f97896a2da56f70938c5e6a2ec Mon Sep 17 00:00:00 2001 From: Hristo Date: Fri, 29 Jan 2021 19:48:37 -0500 Subject: [PATCH 338/356] added neovim package --- roles/shell/tasks/packages.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 92976d51..84627c09 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -181,6 +181,7 @@ # - nbsdgames - neofetch - neomutt + - neovim - newsbeuter - newsboat - oidentd From ab07d1783da6347e35d9682c3a5eaac46515c8ee Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 3 Feb 2021 20:54:23 +0100 Subject: [PATCH 339/356] Adding user stardust --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/stardust.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/stardust.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 12996bad..a22c82ec 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -314,3 +314,4 @@ - include: users/samthecoder.yml - include: users/travankor.yml - include: users/zerw.yml +- include: users/stardust.yml diff --git a/roles/shell/tasks/users/stardust.yml b/roles/shell/tasks/users/stardust.yml new file mode 100644 index 00000000..1203b1ed --- /dev/null +++ b/roles/shell/tasks/users/stardust.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up stardust + user: + name: stardust + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/stardust +- authorized_key: + user: stardust + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC4dMC/N6PMyXDzfEtb9h1x5YThOOwDNX4wetWQ5pPe1D1/avQ2z1irKh/mRwDEKt5LcPOb/C9fScw64RvsMAwRYOswq9vW5CIIKt5ARwjA94lTC/1/sir/8u290VUSAasFa/gK4AMqZJE7r710CpAJ7KPIADRq7uhrivccomnlmrljvSdFBF3f0qBoASW0iMXjb6xcx1I0vve6whdedxuoKIFhf4tBbq5yaFdob+XNIfusxcL8jWZfNKIgrSEb93UDSFzEnA9yumHZFZlfHpeIhhNyMzkDvu4Ly+4QOHqDUwNkklswvHL89M3RIS5nK8VReTyK3Lsui7QUH3RN14Ij6DdACLXZ0ylDP2H/dJwRWkOkVSmlK/PdCMoifgsFu4DX9VOE76VYoeJUTc0fq/eaRg6uR648TJfmeeMY/cZJRtWkcy2BE7aXKSVcZr0hmutW+zMuXplvO8fLikL0tvGk07S+HL8wl18Bd0/pg5ToObeTF/d2qBuzxmIOiKP3kdioQ8AUI2FCgYqGiiU73pw6GoJh3vKkEPwAj89eyv6V1Argy0VJYi/CU4geOHOPoOK2U2JJ1UO8odG4ZYaeYm/3BaWZAQYBp+aHhjAStTgab+StTJCRuNTecEVszshsUKVHmuM1shV2KTbtgkcKnY53LeojEpceDQYzQzF9BwMjTw==" From 296ef8ac69f7b363e14c87db86b2511c098a6739 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Thu, 4 Feb 2021 09:27:41 -0500 Subject: [PATCH 340/356] Package fd doesn't exist --- roles/shell/tasks/packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/packages.yml b/roles/shell/tasks/packages.yml index 84627c09..1de6ccf4 100644 --- a/roles/shell/tasks/packages.yml +++ b/roles/shell/tasks/packages.yml @@ -97,7 +97,7 @@ - finger - fingerd - fish - - fd +# - fd - flatpak - flatpak-builder - flex From 450d38e051612894b0ead747b6a224cb118d2a89 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 6 Feb 2021 09:18:17 +0100 Subject: [PATCH 341/356] Adding user grimm665 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/grimm665.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/grimm665.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index a22c82ec..e9fd6a20 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -315,3 +315,4 @@ - include: users/travankor.yml - include: users/zerw.yml - include: users/stardust.yml +- include: users/grimm665.yml diff --git a/roles/shell/tasks/users/grimm665.yml b/roles/shell/tasks/users/grimm665.yml new file mode 100644 index 00000000..e9b5f080 --- /dev/null +++ b/roles/shell/tasks/users/grimm665.yml @@ -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" From 554546a90d99e4f05a17a4d61f3ab4bb6b18e800 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 7 Feb 2021 21:47:48 +0100 Subject: [PATCH 342/356] Adding user danisanti --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/danisanti.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/danisanti.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e9fd6a20..1149544b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -316,3 +316,4 @@ - include: users/zerw.yml - include: users/stardust.yml - include: users/grimm665.yml +- include: users/danisanti.yml diff --git a/roles/shell/tasks/users/danisanti.yml b/roles/shell/tasks/users/danisanti.yml new file mode 100644 index 00000000..bfa0961e --- /dev/null +++ b/roles/shell/tasks/users/danisanti.yml @@ -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==" From f0becd2c9f4cae17c483dfd09da68292927fbbc1 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 11 Feb 2021 11:54:46 +0100 Subject: [PATCH 343/356] Change SSH Public key on request --- roles/shell/tasks/users/ComputerTech.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/ComputerTech.yml b/roles/shell/tasks/users/ComputerTech.yml index d4a229aa..f66375e8 100644 --- a/roles/shell/tasks/users/ComputerTech.yml +++ b/roles/shell/tasks/users/ComputerTech.yml @@ -12,4 +12,4 @@ - authorized_key: user: ComputerTech state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCopVHx5MpFgOQ5Hx6dxvWi5/q0IcCVRYZfY1i6P6VoTk+XHKr+upD0z9ihdw4eQV5qjPl8C1Ev4ErvsaSpejcA8QfGpWJMvQJurR3DkOvIQWqA4kOey9LHcFcaN7Qq997UWUd6xfCSAuZFQuUrhGVnHXA3RKwTiyJKVU03oUOodhviidCnKjV9DxQqQ1rEJn+qURwc4+dThTEeBUc1hqyaUru1glDBAjiU7TE/x+yyG48N2fChf6/Er/ELVZqu+ds3KSSC+0Lcr/7CCNfn25kdXTGztY8+KUW5QPXY4dz0mgkv7uK+wgghqEE4h1bAI/FfJnMR5hXYaZ60E0MB/WATYIVXxC3rcHk9pGdei8uUeoCMPSMxJRqC9qrJwwjGmy+mTCRAKcABGgISqUhdFOasvK2ySTGofY0LlyePJ/6Wi9O57+oISEpO2icTQVWw+LtRqjW5xC4HYb5DfUyOOp3v3cz7sCvXtbFI6MbbRhezE1VvltFywd1ea/0/jIy4ii4HQNMfVDNAEahr5xU2sBA8mNol6U6VzdjeMayAN8tNuVbkwGqojDbrU7RDO4DqmDzpi1LVvqfPE/LJijg0wwW8BI6xNQKzTk3vEdaQG8DfwIheXtafIyevKLdqIKI/hg6Ao9I/bNP1aC3QEm0azS+dZFm/c9W+xOtQzaU2Qeq/mQ== computertech@bitcoinshell" + key: "rsa-key-20200816 AAAAB3NzaC1yc2EAAAABJQAAAQEAqyhQb8j3fnboRZbe2UqyUs1IdWOPHIJKAJDo+e2D2rC12e4CcpAX9M9/+jxSG6BINXLgwfX2fqInEXu7E6/KhfKuxTfrJVtFVKwpSrelQJG2FDk0+5TuCJyv4gTcV0c/3HyzVNmbmGWaOeZcLiADdOYCr7v0rrSraiCPWOGXXWR7iSv66Jfz79acH+jit0fIF4Xsbc4FMwz0SxHq3gYmq+WRSjrCQtn7CLyGOwzamwD1x3FreZ15Q+Mo1oBrG+YB2Bzt+UrtAIczk8dq8E9J4dCOHgDi9Z80NAhu22fEK1X6xon78/iXKtGIdKYQrAUQoorJ7mdS1d7kcIO74wvMKQ==" From 5aecaea82007fa73957e774b753e541c18b71920 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 11 Feb 2021 12:11:50 +0100 Subject: [PATCH 344/356] Fix SSH Public key --- roles/shell/tasks/users/ComputerTech.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/ComputerTech.yml b/roles/shell/tasks/users/ComputerTech.yml index f66375e8..ab96530a 100644 --- a/roles/shell/tasks/users/ComputerTech.yml +++ b/roles/shell/tasks/users/ComputerTech.yml @@ -12,4 +12,4 @@ - authorized_key: user: ComputerTech state: present - key: "rsa-key-20200816 AAAAB3NzaC1yc2EAAAABJQAAAQEAqyhQb8j3fnboRZbe2UqyUs1IdWOPHIJKAJDo+e2D2rC12e4CcpAX9M9/+jxSG6BINXLgwfX2fqInEXu7E6/KhfKuxTfrJVtFVKwpSrelQJG2FDk0+5TuCJyv4gTcV0c/3HyzVNmbmGWaOeZcLiADdOYCr7v0rrSraiCPWOGXXWR7iSv66Jfz79acH+jit0fIF4Xsbc4FMwz0SxHq3gYmq+WRSjrCQtn7CLyGOwzamwD1x3FreZ15Q+Mo1oBrG+YB2Bzt+UrtAIczk8dq8E9J4dCOHgDi9Z80NAhu22fEK1X6xon78/iXKtGIdKYQrAUQoorJ7mdS1d7kcIO74wvMKQ==" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAqyhQb8j3fnboRZbe2UqyUs1IdWOPHIJKAJDo+e2D2rC12e4CcpAX9M9/+jxSG6BINXLgwfX2fqInEXu7E6/KhfKuxTfrJVtFVKwpSrelQJG2FDk0+5TuCJyv4gTcV0c/3HyzVNmbmGWaOeZcLiADdOYCr7v0rrSraiCPWOGXXWR7iSv66Jfz79acH+jit0fIF4Xsbc4FMwz0SxHq3gYmq+WRSjrCQtn7CLyGOwzamwD1x3FreZ15Q+Mo1oBrG+YB2Bzt+UrtAIczk8dq8E9J4dCOHgDi9Z80NAhu22fEK1X6xon78/iXKtGIdKYQrAUQoorJ7mdS1d7kcIO74wvMKQ==" From d51de87dda11c59fbfca3adf4923256b6109d067 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 11 Feb 2021 13:08:35 +0100 Subject: [PATCH 345/356] ComputerTech account unenforced in ansible --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/ComputerTech.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/ComputerTech.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 1149544b..5e8a7047 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -220,7 +220,6 @@ - include: users/duitser.yml - include: users/lonely-wolf.yml - include: users/cloverfield.yml -- include: users/ComputerTech.yml - include: users/noteness.yml - include: users/baloo.yml - include: users/sriwafikadr.yml diff --git a/roles/shell/tasks/users/ComputerTech.yml b/roles/shell/tasks/users/ComputerTech.yml deleted file mode 100644 index ab96530a..00000000 --- a/roles/shell/tasks/users/ComputerTech.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- 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==" From f5363297b7197b1603de211d6b8645d4c369d189 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 11 Feb 2021 13:12:02 +0100 Subject: [PATCH 346/356] To change SSH Public key for computertech --- roles/shell/tasks/users/computertech.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/computertech.yml b/roles/shell/tasks/users/computertech.yml index 984a8524..85ae3e79 100644 --- a/roles/shell/tasks/users/computertech.yml +++ b/roles/shell/tasks/users/computertech.yml @@ -12,4 +12,4 @@ - authorized_key: user: computertech state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlywR+GXWaNMO/jPcGj8Rv+xHhNHW62IX9y1eH1TV8x1S4auEAX4iPyXjqiNJH6NQuaxm+wyxMMjwaYyZkRoqDF28aI8RUqjnBBsZ7pkdLUGfu5KR2t/fu05ABMM40AI4wyBoO7QwsNr1/17iEcZD7p/kOP3IJlfMno/+bXQkGcB+fI9PtAgfZK3/UFFgggcnvFBrHGf79XmfisPblMy76BDhvXlPU1q/ecW2RYfZ7dnnGHhVH1EhddD2ibM0oNoqtyRmYnq6++gfvh3RM4VJf6IfCfErO3hOJ3bmaD/VhMvgH6ddf7HsIMOV9vgiDo3o6hPbsGEsw/ffU5KeqgSFow==" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAqyhQb8j3fnboRZbe2UqyUs1IdWOPHIJKAJDo+e2D2rC12e4CcpAX9M9/+jxSG6BINXLgwfX2fqInEXu7E6/KhfKuxTfrJVtFVKwpSrelQJG2FDk0+5TuCJyv4gTcV0c/3HyzVNmbmGWaOeZcLiADdOYCr7v0rrSraiCPWOGXXWR7iSv66Jfz79acH+jit0fIF4Xsbc4FMwz0SxHq3gYmq+WRSjrCQtn7CLyGOwzamwD1x3FreZ15Q+Mo1oBrG+YB2Bzt+UrtAIczk8dq8E9J4dCOHgDi9Z80NAhu22fEK1X6xon78/iXKtGIdKYQrAUQoorJ7mdS1d7kcIO74wvMKQ==" From b44852b94ded4a0fe8184483af30f494a7b9325e Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Sat, 13 Feb 2021 17:23:15 -0500 Subject: [PATCH 347/356] Adding user gluon --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/gluon.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/gluon.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 5e8a7047..bd291c2a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -316,3 +316,4 @@ - include: users/stardust.yml - include: users/grimm665.yml - include: users/danisanti.yml +- include: users/gluon.yml diff --git a/roles/shell/tasks/users/gluon.yml b/roles/shell/tasks/users/gluon.yml new file mode 100644 index 00000000..7346ad98 --- /dev/null +++ b/roles/shell/tasks/users/gluon.yml @@ -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==" From d40dcffa7190a1061280216eb270ff1a5989f39e Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 14 Feb 2021 20:56:10 +0100 Subject: [PATCH 348/356] Adding user zer0 --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/zer0.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/zer0.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index bd291c2a..3103b10f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -317,3 +317,4 @@ - include: users/grimm665.yml - include: users/danisanti.yml - include: users/gluon.yml +- include: users/zer0.yml diff --git a/roles/shell/tasks/users/zer0.yml b/roles/shell/tasks/users/zer0.yml new file mode 100644 index 00000000..0eadc709 --- /dev/null +++ b/roles/shell/tasks/users/zer0.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up zer0 + user: + name: zer0 + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/zer0 +- authorized_key: + user: zer0 + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDByp5RcDsiuLIQ2Nm4rSniHlMbd/SN08cXeshBtBkivywrpi0x5+JFBkvRhBB8tYyan6GD4QK36eo1UVs2iVzKDB20FD5BlZa+u+OFCbfJfZu9xQcu21x+gci7fL6HjhvwEObOhlhNNHmPJv4aoaeCI2ffqX4EMQaClFO7Zcz3ZutpRCMhd5/76u1drOxGYlrsRHVDJWR0B1KY1sFA7yvfkHgLcTAbEj3fgoqWlU9u5mdvwO0V++UxqOqcdY1mxHHCyJkQkXfNAHd5rEYmm/rpFMAeRfNmhWmDJUAAgYZ8LVGN2jLGdenOR4yBfaRVZixKTDzw7ZLeawtwAAXstXq9jq90RelcAdEhNcBAZNPHfbRN+vVVXRbD+/YOM2QmIpgqpqBMCQWVR+qkuWFjPKiFeMTn+maIURAvuT4JOC2TYqNW8Fxpn81BOTkWCm9whC4QJx0cV/HWzE246/ksjQEE41vRVryUqKxFKjszHYhZyArJcnXfatfoLuei3y6Dl9BySelXBEQ5FV2rLPjmBSwIVNwVJ3d6spyYuU+Y6CtSa25WMF8nObiMZne3BRx7lWRitOVSP2kQD2wjsfQml0eMXYxTjoL5DrPcSFcOJjNsIird9T8dWtS8mIhomb2Vbqu392aR8Xg8bb5WKpeh+LdPDeNVnCoMIlF+6h7gQ+Vo0Q==" From 4b40a6ca6224b2e26e0ba6c404854866feabdb06 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sun, 14 Feb 2021 20:57:20 +0100 Subject: [PATCH 349/356] Adding user copafum --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/copafum.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/copafum.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 3103b10f..1a693466 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -318,3 +318,4 @@ - include: users/danisanti.yml - include: users/gluon.yml - include: users/zer0.yml +- include: users/copafum.yml diff --git a/roles/shell/tasks/users/copafum.yml b/roles/shell/tasks/users/copafum.yml new file mode 100644 index 00000000..01cc7033 --- /dev/null +++ b/roles/shell/tasks/users/copafum.yml @@ -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" From e15e2168a7006dc19c2225d386ae1ae0c7f7e744 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 15 Feb 2021 21:26:19 +0100 Subject: [PATCH 350/356] chuck account unenforced in ansible --- roles/shell/tasks/users.yml | 1 - roles/shell/tasks/users/chuck.yml | 15 --------------- 2 files changed, 16 deletions(-) delete mode 100644 roles/shell/tasks/users/chuck.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 1a693466..42e445e3 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -38,7 +38,6 @@ #- include: users/bullah.yml #- include: users/camellia.yml - include: users/chispitos.yml -- include: users/chuck.yml - include: users/clu.yml - include: users/cyber.yml - include: users/cyphyx.yml diff --git a/roles/shell/tasks/users/chuck.yml b/roles/shell/tasks/users/chuck.yml deleted file mode 100644 index a54473f2..00000000 --- a/roles/shell/tasks/users/chuck.yml +++ /dev/null @@ -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==" \ No newline at end of file From 1f9f51c16ae0a252445155d128ec3530724e7a2b Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 18 Feb 2021 21:45:49 +0100 Subject: [PATCH 351/356] Adding user cloudsss --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/cloudsss.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/cloudsss.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 42e445e3..161edb3a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -318,3 +318,4 @@ - include: users/gluon.yml - include: users/zer0.yml - include: users/copafum.yml +- include: users/cloudsss.yml diff --git a/roles/shell/tasks/users/cloudsss.yml b/roles/shell/tasks/users/cloudsss.yml new file mode 100644 index 00000000..fb1b0484 --- /dev/null +++ b/roles/shell/tasks/users/cloudsss.yml @@ -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" From cda957341aa9c30237c8ded3cb00aa9a6076abe6 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 18 Feb 2021 21:48:57 +0100 Subject: [PATCH 352/356] Adding user jimmy --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/jimmy.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/jimmy.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 161edb3a..e3b54601 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -319,3 +319,4 @@ - include: users/zer0.yml - include: users/copafum.yml - include: users/cloudsss.yml +- include: users/jimmy.yml diff --git a/roles/shell/tasks/users/jimmy.yml b/roles/shell/tasks/users/jimmy.yml new file mode 100644 index 00000000..64a424dd --- /dev/null +++ b/roles/shell/tasks/users/jimmy.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up jimmy + user: + name: jimmy + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/jimmy +- authorized_key: + user: jimmy + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDn4BUPibEJilfzer+tWUcj7r4kxxQHXm+LkrQ626s21RPI2dPzlyVs6uPzUXpoy8JXR52dcoSxLv9XowvatiArueIB4hNBYzHivGIQenzFoxgDtK29LtCar52lFmvQe+i9PsnnPNgW29PZPsSpkE9VZQVlMI4h4QY11rS0jQcBekiAk6ohI+lFyQ+/CvQX5pKaX0qrtDbiBjCnctxRW+P0aMFUAMAI2Nk2dTLwXqBgk1cikcoubQrr1aavHxGcDopznLhDCeyiFcJqG8/0MPtAXuUdzYkY8Se00Rkr/UMW995nwqzYJLwK1o/1F+z4fIg1/WN9j7Kv4kTRwUKwqzE5 otn\jshen@TOL5259JIMMYS" From b302901548b7b2841401567a0e3bb0afa372cab3 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Thu, 18 Feb 2021 21:53:17 +0100 Subject: [PATCH 353/356] Fix ssh key --- roles/shell/tasks/users/jimmy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/jimmy.yml b/roles/shell/tasks/users/jimmy.yml index 64a424dd..d829ab61 100644 --- a/roles/shell/tasks/users/jimmy.yml +++ b/roles/shell/tasks/users/jimmy.yml @@ -12,4 +12,4 @@ - authorized_key: user: jimmy state: present - key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDn4BUPibEJilfzer+tWUcj7r4kxxQHXm+LkrQ626s21RPI2dPzlyVs6uPzUXpoy8JXR52dcoSxLv9XowvatiArueIB4hNBYzHivGIQenzFoxgDtK29LtCar52lFmvQe+i9PsnnPNgW29PZPsSpkE9VZQVlMI4h4QY11rS0jQcBekiAk6ohI+lFyQ+/CvQX5pKaX0qrtDbiBjCnctxRW+P0aMFUAMAI2Nk2dTLwXqBgk1cikcoubQrr1aavHxGcDopznLhDCeyiFcJqG8/0MPtAXuUdzYkY8Se00Rkr/UMW995nwqzYJLwK1o/1F+z4fIg1/WN9j7Kv4kTRwUKwqzE5 otn\jshen@TOL5259JIMMYS" + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDn4BUPibEJilfzer+tWUcj7r4kxxQHXm+LkrQ626s21RPI2dPzlyVs6uPzUXpoy8JXR52dcoSxLv9XowvatiArueIB4hNBYzHivGIQenzFoxgDtK29LtCar52lFmvQe+i9PsnnPNgW29PZPsSpkE9VZQVlMI4h4QY11rS0jQcBekiAk6ohI+lFyQ+/CvQX5pKaX0qrtDbiBjCnctxRW+P0aMFUAMAI2Nk2dTLwXqBgk1cikcoubQrr1aavHxGcDopznLhDCeyiFcJqG8/0MPtAXuUdzYkY8Se00Rkr/UMW995nwqzYJLwK1o/1F+z4fIg1/WN9j7Kv4kTRwUKwqzE5" From 064015876f1664854123a5a2c65519a3743cf460 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 19 Feb 2021 20:02:25 +0100 Subject: [PATCH 354/356] Adding user ayb --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/ayb.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/ayb.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index e3b54601..c3cfb47e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -320,3 +320,4 @@ - include: users/copafum.yml - include: users/cloudsss.yml - include: users/jimmy.yml +- include: users/ayb.yml diff --git a/roles/shell/tasks/users/ayb.yml b/roles/shell/tasks/users/ayb.yml new file mode 100644 index 00000000..79a47716 --- /dev/null +++ b/roles/shell/tasks/users/ayb.yml @@ -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" From 34a8ae4377e447908d9a023183bfdb31ae853412 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 22 Feb 2021 20:43:38 +0100 Subject: [PATCH 355/356] Adding user bitedasher --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/BiteDasher.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/BiteDasher.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c3cfb47e..460f0104 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -321,3 +321,4 @@ - include: users/cloudsss.yml - include: users/jimmy.yml - include: users/ayb.yml +- include: users/BiteDasher.yml diff --git a/roles/shell/tasks/users/BiteDasher.yml b/roles/shell/tasks/users/BiteDasher.yml new file mode 100644 index 00000000..5d468b02 --- /dev/null +++ b/roles/shell/tasks/users/BiteDasher.yml @@ -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==" From e0132eba269f057ac3ed0ba8f67b297e0c5c7759 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Mon, 22 Feb 2021 20:44:47 +0100 Subject: [PATCH 356/356] Adding user skydrome --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/skydrome.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/skydrome.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 460f0104..4450c704 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -322,3 +322,4 @@ - include: users/jimmy.yml - include: users/ayb.yml - include: users/BiteDasher.yml +- include: users/skydrome.yml diff --git a/roles/shell/tasks/users/skydrome.yml b/roles/shell/tasks/users/skydrome.yml new file mode 100644 index 00000000..a3dfe861 --- /dev/null +++ b/roles/shell/tasks/users/skydrome.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up skydrome + user: + name: skydrome + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/skydrome +- authorized_key: + user: skydrome + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCaEZUpu8xGfmh0f2W9Pd3GKkQWxRDNQhS43e2j44FZoOiNFY6rI/D+JLxMGuxwR8xAnG1zsmj48UChx3sryAXaIMvtdZDB9vezejiKjcrwyqhdjoUDDqrrATC9tRCRUANeEg6++MujYKV5gltv9OUJ9yAuVIlWCavutHNN84oqD/51pGX6yRaSKtsqR+Uu/4PLFlblunoUJGz/gaNBDLGizbVvkXtSosn9M0RFH7JOd6ksiMaE55S35XlraX2isIsEl4y9TwRm8C2Tx7l20hJkOgbi38Izb1zObqGzQC3jMbvk1yTNtBqFPKRdVdBzWP3tV7Pl86/urMoP3a08ZoCL"