Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • antiz/infrastructure
  • okabe/infrastructure
  • eworm/infrastructure
  • polyzen/infrastructure
  • pitastrudl/infrastructure
  • sjon/infrastructure
  • torxed/infrastructure
  • jinmiaoluo/infrastructure
  • moson/infrastructure
  • serebit/infrastructure
  • ivabus/infrastructure
  • lb-wilson/infrastructure
  • gromit/infrastructure
  • matt-1-2-3/infrastructure
  • jocke-l/infrastructure
  • alucryd/infrastructure
  • maximbaz/infrastructure
  • ainola/infrastructure
  • segaja/infrastructure
  • nl6720/infrastructure
  • peanutduck/infrastructure
  • aminvakil/infrastructure
  • xenrox/infrastructure
  • felixonmars/infrastructure
  • denisse/infrastructure
  • artafinde/infrastructure
  • jleclanche/infrastructure
  • kpcyrd/infrastructure
  • metalmatze/infrastructure
  • kevr/infrastructure
  • dvzrv/infrastructure
  • dhoppe/infrastructure
  • ekkelett/infrastructure
  • seblu/infrastructure
  • lahwaacz/infrastructure
  • klausenbusk/infrastructure
  • alerque/infrastructure
  • hashworks/infrastructure
  • foxboron/infrastructure
  • shibumi/infrastructure
  • lambdaclan/infrastructure
  • ffy00/infrastructure
  • freswa/infrastructure
  • archlinux/infrastructure
44 results
Show changes
Commits on Source (151)
Showing
with 292 additions and 233 deletions
......@@ -93,3 +93,4 @@ If you want to add a new official project, here are some guidelines to follow:
1. [ ] In the GitHub description of the mirrored project, append " (read-only mirror)" so that people know it's a mirror.
1. [ ] Disable `Packages` and `Environments` from being shown on the main page.
1. [ ] In the website field put the full url to the repository on our GitLab.
½. [ ] Go to https://github.com/archlinux/my-example/settings/access and remove the GitHub account `archlinux-github`
......@@ -17,6 +17,7 @@ This template should be used for offboarding Arch Linux team members.
- [ ] Set user to inactive in archweb: https://www.archlinux.org/admin/auth/user/
- [ ] Remove member from [staff mailing list](https://lists.archlinux.org/admin/staff/members)
- [ ] Ask the user to leave `#archlinux-staff` on Libera Chat and forget the password
- [ ] Remove staff cloak on Libera Chat
## TU/Developer offboarding checklist
......
......@@ -33,8 +33,7 @@ https://www.gnupg.org/gph/en/manual/x135.html
The mailing list password can be found in misc/additional-credentials.vault.
- [ ] Add new user email as per `docs/email.md`.
- [ ] Create a new user in archweb: https://www.archlinux.org/devel/newuser/
This is also linked in the django admin backend at the top
- [ ] Create a new user in [archweb](https://www.archlinux.org/devel/newuser/). Select the appropriate group membership and allowed repos (if applicable).
- [ ] Subscribe **communication e-mail address** to internal [staff mailing list](https://lists.archlinux.org/admin/staff/members/add).
- [ ] Give the user access to `#archlinux-staff` on Libera Chat.
- [ ] Give the user a link to our [staff services page](https://wiki.archlinux.org/title/DeveloperWiki:Staff_Services).
......
......@@ -124,11 +124,27 @@ Arch-audit can be used to find servers in need of updates for security issues.
The following steps should be used to update our managed servers:
* pacman -Syu
* manually update the kernel, since it is in IgnorePkg by default
* sync
* checkservices
* reboot
##### Semi-automated server updates (experimental)
For updating a lot of servers in a more unattended manner, the following
playbook can be used:
ansible-playbook playbooks/tasks/upgrade-servers.yml [-l SUBSET]
It runs `pacman -Syu` on the targeted hosts in batches and then reboots them.
If any server fails to reboot successfully, the rolling update stops and
further batches are cancelled. To display the packages updated on each host,
you can pass the `--diff` option to ansible-playbook.
Using this update method, `.pacnew` files are left unmerged which is OK for
most configuration files that are managed by Ansible. However, care must be
taken with updates that require manual intervention (e.g. major PostgreSQL
releases).
## Servers
This section has been moved to [docs/servers.md](docs/servers.md).
......@@ -166,7 +182,7 @@ See [docs/backups.md](./docs/backups.md) for detailed backup information.
Our Gitlab installation uses [Omnibus](https://docs.gitlab.com/omnibus/) to run Gitlab on Docker. Updating Gitlab is as simple as running the ansible gitlab playbook:
ansible-playbook playbooks/gitlab.archlinux.org -t gitlab
ansible-playbook playbooks/gitlab.archlinux.org.yml --diff -t gitlab
## One-shots
......
......@@ -72,6 +72,23 @@ or just a sub-directory:
misc/borg.sh extract <backup_address>::<archive_name> backup/srv/gitlab
## Special backups
### Mariadb
For Mariadb backups are made using mariabackup to `mysql_backup_dir`.Backups can are made and
restored using the `mariabackup` tool. See also [official MariaDB docs](https://mariadb.com/kb/en/full-backup-and-restore-with-mariabackup/).
### PostgreSQL
For PostgreSQL backups are made using pg_dump to `postgres_backup_dir`.
Restoring backups can be done with `pg_restore`. See also [official PostgreSQL docs](https://www.postgresql.org/docs/current/app-pgrestore.html).
### Gitlab
GitLab is backupped up using the `gitlab_backup` tool to `gitlab_backupdir`. See also [official GitLab docs](https://docs.gitlab.com/ee/raketasks/backup_restore.html).
## Adding a new server
Adding a new server to be backed up goes as follows:
......
# Banning IP Addresses for abuse
For banning with an expiry `fail2ban` can be used, the expiry time depends on the configured fail2ban jail:
```
fail2ban-client set sshd banip 1.1.1.1
```
To permanently ban an IP address `firewall-cmd` can be used as shown below:
```
firewall-cmd --add-rich-rule="rule family='ipv4' source address='1.1.1.1' reject"
firewall-cmd --add-rich-rule="rule family='ipv4' source address='1.1.1.1' reject" --zone=public
```
```
firewall-cmd --add-rich-rule="rule family='ipv6' source address='1:2:3:4:6::' reject"
firewall-cmd --add-rich-rule="rule family='ipv6' source address='1:2:3:4:6::' reject" --zone=public
```
Note that on Gitlab, you must block the ip address for the docker zone:
......@@ -23,5 +31,5 @@ firewall-cmd --list-all
To remove a banned IP Address:
```
firewall-cmd --remove-rich-rule='rule family="ipv6" source address="1:2:3:4:6::" reject'
firewall-cmd --remove-rich-rule='rule family="ipv6" source address="1:2:3:4:6::" reject' --zone=public
```
# Configuration for users
SMTP/IMAP server: mail.archlinux.org
SMTP port: 465 (TLS), [deprecated: 587 STARTTLS]
SMTP port: 465 (TLS)
IMAP port: 993 (TLS)
username: the system account name
......@@ -31,14 +31,14 @@ to the server. This gives us several benefits:
When a new host is provisioned:
- The *postfix* role has a task delegated to 'mail.archlinux.org' to create a local user
- The *postfix_null* role has a task delegated to 'mail.archlinux.org' to create a local user
on 'mail.archlinux.org' that is used for the new server to authenticate against. The user
name is the shortname of the new servers hostname (ie, "foobar.archlinux.org"
will authenticate with the username "foobar")
- You will need to run the *postfwd* role against mail.archlinux.org to update the
rate-limiting it performs (servers are given higher rate-limits than normal
users - see `/etc/postfwd/postfwd.cf` for exact limits). This *should*
happen automatically as the *postfwd* role is a dependency of the *postfix*
happen automatically as the *postfwd* role is a dependency of the *postfix_null*
role (using `delegate_to` to run it against 'mail.archlinux.org' regardless of the target
host that the postfix role is being run on)
......
......@@ -307,15 +307,15 @@
3072 MD5:42:0a:57:89:2a:ae:e6:c5:c1:ae:6a:a2:bd:3d:5f:dc root@archlinux-packer (RSA)
# runner1.archlinux.org
1024 SHA256:TgWGBKCSo3rkdYuP4mJzGtH+Ucub8dmEJXnnzrhUSwM root@84.17.49.250 (DSA)
256 SHA256:2OEO/Pv1OxCLaVg9r8wHzTR7V3YTWEw//g7LJgIBMGs root@84.17.49.250 (ECDSA)
256 SHA256:nXpZ/R3IuOEAasoIvCCTkdMlyNjCnWVTvQBh6xvycIg root@84.17.49.250 (ED25519)
3072 SHA256:Ii5JwUoEKXV37rdjnsts4k3ppbEX+GHYjBC9mygdwY4 root@84.17.49.250 (RSA)
1024 MD5:31:f6:9c:50:d2:80:f1:fa:b5:50:c5:06:3a:9e:80:cc root@84.17.49.250 (DSA)
256 MD5:ad:cb:d6:53:cb:42:8d:33:26:99:33:fd:c9:19:a0:ea root@84.17.49.250 (ECDSA)
256 MD5:c1:7f:43:ad:dc:69:17:b4:33:df:bb:94:00:22:33:5a root@84.17.49.250 (ED25519)
3072 MD5:da:9f:ec:c4:f3:c1:63:6e:ca:f4:9b:ac:32:23:d9:74 root@84.17.49.250 (RSA)
1024 SHA256:/8lwFrCJznKrOXlMWWzq2SwInUAdEp/2WxpL4VMPnTE root@runner3.archlinux.org (DSA)
256 SHA256:VIbire3ek5TUMOFgLAO/hQV9FG5/OYWSJif0CziS/CI root@runner3.archlinux.org (ECDSA)
256 SHA256:gWeV6cBQPoe6hrqtItOVhv9Wr7Awnzgt1YcnzcmArJM root@runner3.archlinux.org (ED25519)
3072 SHA256:Ke3/DVYRlx8EA/JzmdD4evxbyVwPQ3rQAroGkmScpRs root@runner3.archlinux.org (RSA)
1024 MD5:68:27:02:26:23:b8:95:cc:d3:82:34:57:54:61:29:41 root@runner3.archlinux.org (DSA)
256 MD5:54:d3:ac:fa:52:e6:38:be:09:5c:51:c4:5c:3f:0e:d4 root@runner3.archlinux.org (ECDSA)
256 MD5:fe:fc:6f:0f:0f:5e:76:25:ed:ac:6d:f1:5d:22:94:13 root@runner3.archlinux.org (ED25519)
3072 MD5:92:43:38:30:47:11:2a:a3:df:2d:df:93:ce:3f:cc:d8 root@runner3.archlinux.org (RSA)
# runner2.archlinux.org
1024 SHA256:tK3XeUrt/ahlj1fdl5tQgeVXticllUIaewK2y86Jvzc root@runner2.archlinux.org (DSA)
......
......@@ -139,9 +139,9 @@ reproducible.archlinux.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDjL6uJx0faep1bFH
reproducible.archlinux.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC/kp2Rm2jhGQn0PJskhrmxUkYDDeEC8tXwvR+J+t40KACQnqi4SMdeu61Jyy2NBdBOw3muegb9kspOzN+NSQFpjYhfkYJGswyF46vTkgXUWJpuHBKiWkWmZzVKcveS6iAOEDLaeAesRHmcuEjaK323d0QDf6vJ4Gbb2veFoW5Kip37phrjZH2RCCLFdrw1IGopPuKHYDGwIIqt0hQLSkyq/A1BgmiR+eo4S8AlN7D/w0MVz7bKIuQkSmm5taTjo9FpOJJ0O6KMFXrXCPKPDuzSa/zMSQgNw+JnwhjQRbnH5AUB+xFe/qt8wstBGE/VT7WoyOsfTvfsgdQmz55BgPxR9lZI+rKl43Lp3zGojCaVOd+9wV08DgGN13W7imGqWuVq0vPyIkGl19Ch5mgemED49g2ehddeAUt0FR/MM8ewD1U4cHYpd4PHLgOdC9KfGvRJkymWFPd/EypwhEdFSCJ4BNDbQfYl4ciXnuTmbh3eM/Z/TjAmztQqAok08KAQYd8=
# runner1.archlinux.org
runner1.archlinux.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFXWZCrWgRV7mPbjSLccWOlq7W0TwWyeVc/BWwFMstmBFwEDwo89VseT9zfaabHgPjLmTaN+uzQg75xNIzAJl2U=
runner1.archlinux.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMO4pNVClWcKyQXI8oqhqDWKxYkVu+/1qUIz6vkVG2St
runner1.archlinux.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDepdBpbpetW7NjMX5H3r6ZJj6lbde3p5RswTM80pazzOacXaRH8SHo0acuyabsJY0LJxgXzq9wZXvVasQ4L2zV+byPXvvT8CoyPtgeknk53beByNNvO2PUPuidtXhVspDAhqL/LNxUUBbel1ATRx+BX3cUo71A+NoFT3p6I5zIsUWbBfPP34Idckj8T1+54pAJ25bf133ustQfoOU0pZs+JsJEnFpMK8qrLk5Pt0OcvvQ9/42OI7ZSYg/mRaRX0JYQCAKyAIhSlrCynrpmj+wh38YnbT/fB5uBt6Gv80rC5e7lvRBy09MXK35YeN8Jr7rXLedH6XGBCf0IrcS1bp+JkfXPjMe9uDSQyK4ujElrYcVZlbrt4OyIh0OGgShmOW+pwouerypHuSzzjeDH8kl0UUa+ZijzQvIrm861EbHmusBVfoLJBVUQk/bPpUh+Zzu0cANPDEE6RjzUsFRReAga4NIqscOy7/YNNc4aAVyVLgFEquNBvUKsXWJoY08PTDE=
runner1.archlinux.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKvHLgeAi6GFIpXYVDRfiTW24QsQeTCDTEB4oiEfWyt6fge/3kmLCQ8ho0r3BuGdZSzDBJdLhMOEq3T0YL2nCYU=
runner1.archlinux.org ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP+eji5tWpLLWOJKqWJSW2niUQNxPaY+AeKXxFCQ+u+9
runner1.archlinux.org ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDHnXZd8LCb5qKbKFUNVYDNRCRFhmm7bjx1uMhy6yrSj5D7S1LacCra4qPLpQmhDZOgcslRzUue7ZHr+TNbYFxkBc2SsffkqgPovdkpMc4JkSA652vAqzeQKVcIhpgh7nk96JAlTP9y598Ud574CTIxzIXgldr6n+9UMqErSg1tlCXCkCBQ7aA/TVKWoVSRrdTJdWwzEUqv3espq4MN7H4gJLJMyqEDlYIYXuiKU0PSBC+piyPu0PZto6cTLY/l9gvcTmF9XM6Z8KIXuz7KHSsXF594SI8712WW2o7l2VyQhHkwg7E1YTEcZ3L7+g3Qci1Pzpu+85dkg8dyVJ8VvBAAroybB93WZQKC9q3w55rReoVhOohoL2HDTcpKo7gE36r7L1CfyS959x52v0QA99U6IQS1u9apoMhIa83QPSCbnSzhBlXesBR6hTuxEDapBUxEmqGa2gMoEli0VSOpNJHFUiDGzxTPhODcZnoqm3VRlVSJmyqpev/9AxgPdF0l4fs=
# runner2.archlinux.org
runner2.archlinux.org ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBUZk2jW9uO9Hnjmbf9Bnpm2/HrR5vg8wpVPIUgcSQhkoU7B54j28UgVvnmcEeoD9gyO9gH9gJG9xN95kM3JobI=
......
......@@ -5,8 +5,6 @@ arch_groups:
- tu
- fellows
- multilib
- archboxes-sudo
- docker-image-sudo
- support-staff
arch_users:
......@@ -29,13 +27,20 @@ arch_users:
alad:
name: "Alad Wenter"
ssh_key: alad.pub
hosts:
- mail.archlinux.org
groups:
- tu
- support-staff
alerque:
name: "Caleb Maclennan"
ssh_key: alerque.pub
groups:
- tu
alex19ep:
name: "Alexander Epaneshnikov"
ssh_key: alex19ep.pub
groups:
- tu
allan:
name: "Allan McRae"
ssh_key: allan.pub
......@@ -240,7 +245,10 @@ arch_users:
fukawi2:
name: "Phillip Smith"
ssh_key: fukawi2.pub
groups: []
hosts:
- mail.archlinux.org
groups:
- support-staff
gitlab:
name: ""
groups: []
......@@ -346,6 +354,13 @@ arch_users:
- name: klausenbusk_2.pub
hosts:
- all
lahwaacz:
name: "Jakub Klinkovský"
ssh_key: lahwaacz.pub
hosts:
- mail.archlinux.org
groups:
- support-staff
lcarlier:
name: "Laurent Carlier"
ssh_key: lcarlier.pub
......@@ -419,17 +434,12 @@ arch_users:
ssh_key: sangy.pub
groups:
- tu
- docker-image-sudo
schuay:
name: "Jakob Gruber"
ssh_key: schuay.pub
groups:
- tu
- multilib
scimmia:
name: "Doug Newgard"
ssh_key: scimmia.pub
groups: []
morganamilo:
name: "Morgan Adamiec"
ssh_key: morganamilo.pub
......@@ -455,7 +465,6 @@ arch_users:
shell: /bin/zsh
groups:
- tu
- archboxes-sudo
kpcyrd:
name: "Kpcyrd"
ssh_key: kpcyrd.pub
......
$ANSIBLE_VAULT;1.1;AES256
65396363623630633732613965306233643063626662363338393139366164656139346434383462
6564626437333762333763393433333631663439663964340a336230626137356433366331366632
36383933313530326562346639663834336563326439313233333034613861343966646564316234
3036653632653039390a323533633335653433666431326662343663313733373933366563626164
31623264386565356138393331326164393362303236623835656665323930623731393734653761
34663432383632363163303564626634666463343638323262383636373730353462613634653131
32623537326433333938623336346163396166396266366564383235623737333961336665643733
38633939306138343237623830333339633830666562393232616436333538646532356239336530
62333864323339616563636664636165363439326332633365343962393435326237343930393231
37663630646661313936303864623531343063656530666466666232343431323938646533353563
61633439633666353361633631316234383533363665323964313033623233366138383365376365
37356637313533333939623265633665633365356662643930336264646265633962323662643332
64646439383338353063313937633063653630393061633238616538646135613337636465653833
33633139653637343638636330333537623630373365353964653035353537636465366237643331
35366266666465396332333866336539306465306635323063376238363131333337616336353265
34366561616532316266333464323966616435616534353739383461666234616437646133623937
65353532663632643236363966383637343635653362313038386436333562316534336639323438
66373033373666326137626266303765353232336535303933336164643365383766303661383263
64646363396633616163633939613138663566633635343037353834623162393932653932656263
35353537353334353739633963616362316631313065666265636434653338663331323365373039
63653332333939326165336662636662336637636439346137626132623238393635323761343432
66613134373932346562616434356635313663373538666539393739666133396132333466373264
30383330633330346666633430666332643965303735616363366537366237343036643030323865
34613932646638343664613761313734333336633163336233623930336539646463633836376635
39663264363865316639616664663364303166373865313834333533656331626330666139313137
62353934633533303439333164663866613738376438633061343839306339633536376562343866
62343362346532643735326439636565376331376563343164383234653637326530303233363538
33346638393863616130323662653132653562633136356230643239326438646165386563313962
66623739666639396665323134356339636437386632383966623535333865393135656664633338
36323334366330656232653062306338363938616163303562346436336631626234316233343061
34303964633762323764613032353133386162643164346362366136313738383363333864363965
34643762373433613663663166383038313162396366346464356237636330373566613736626136
31613865343361336638653836316265653436333532316235323132353138373937386334306561
35633461376464613862303438656561653966623266313363666563363434613231623530663238
32366565333635636134303934366332613438356433643433383438636264323735663964313139
35306532316465666331333037323665363663646264623530313737356564383462336264333864
32316430636162626432336461343437376565386236633634373839396534303065303937346462
39363761613865353162373232666639383963326330636566383836363932623935313563616637
32393362396464353937306333636466646339653230326437626337333735636261363037326561
38336431303130663438356666343963653363316134386262363461323766376130663765623764
63343963636466383136633033393735653031373261653765353431626439633936633966646565
34373761653730326162366332323335363635306538306437336635336333313732383739366534
63383965376365636231366430383730316339616535343131383933616235383536376364613562
65663930303465346531316361393837333537363235376430316334373764636363363530343730
63323334303333613562383135626136373533323539303230306533643736313864613365386461
64663465373130313063316139383333623134393865613337643931383664323766636437366439
66613763343438353934653230386264323364613437373663366261656338663363323862376637
64656431393964303339396435383037386265613861343535636432616461656436396332643838
33356236613233613136666633643066613636306532376161333036636363366562306632333636
62643532363965613534373734363130633530643766653235626437303138623636353663666265
61613161383835623863663561386564633533626237303038323830373361633763353830376166
32303131666439396162656137303737316562623264356663623162373161303161356364363633
30663162336235323338303131386330343263646530303736376334383436646335346639613263
33363939393132626139363361656130376361663437623362626635323233666333336230656331
63313335383564373535346264376330373737393464316661646332373435616636326163363266
32643333393234613737346138396338636333336331616162393231643438303665613261363038
61613733643534363932356334663739316533353837343138306662326632376137316664323638
65663566623632363161373061653963313966343265316262333061326566646238636162653661
34383032363238626161653338623734333938386331323464306531363634313632386539316663
37363537303563313538663436316130356132353866313037306630386364303636626266333637
65386536643063333935663461326266333564323731303230336539643661383337333066663361
34323462633264383232386438313064316539303664626365396630353062323132616266306564
37643132626534356436393063613865386538663439343435313532653130653035653961646136
31306366343065646663393233363866666534346633373134383531626335656364313339663031
65613664363937323737646265653639643532373266663039363864653166323837353434333231
63633932393661633664313730313164313335663862373235363634396134366564356565346634
66383134323134303939303930613433613361343562316231316135643539623835333462326537
61376161306135363738323465393761363063656330626530613936653966646166323936356665
64396231383863333130613732633961313461656465333534663836663633313838366361343139
37333061323164373634346632396264633034303161613865633262393230646631373961633231
35336564376564636538303035396338393238333464303737636663663039656134633762613332
66393532616439323830393665646265386233613939613139303263626337396230393832636132
35323335366663626439623438663032653532363135643066353462646637356461643832633138
32316132346162663035646538316566353064613934366632646333363831323664343566656363
64623031393834386262383462383932633936643935376261313230623538653939623963663561
32626330383834343162323066383265343761353330373362613365353465363335643365333036
34363639623330363134666163333831626630656364353163613866396433656431356533383164
64343165343766666630363031663364643262363637316533623634396537623037343135623936
30663861363866663632373336333031393632356531356533323363383066373334363464323234
64356133343037323164386539373135643834653934343230376435303762636632633132616537
66626335323566383836623965383364303539313631303461366461316636353765363461656532
36326136316437373838363636343964356132633032316335646635626131636634356634383834
64343136626165383239333139636537343566313539366437393138663562336534613230643139
64653533643132656535376164356331323236366539346533343663396532646565346639636363
35313564303833323364656366343630613738656161373266363664346362316437383937643630
64356264366362366630646565323066663637653166393062396339356130636263636430633533
37633961303233623538633632373061353833306230396632636238343666653363333235646437
61313139396161633730326638303139323263393135366161313962643336353536616234633037
63376461333337363338633333626637666233373363613665613066336233336361346137653039
63383236373637346531616337376464666265333432656231363633353561366537383161353466
37306631366565356231306635336137303264626232333663356437313239663533633132663037
30626537666130313136393762616138306133636136656361633631326339316334343265316133
63383166656365643263393032626332633338343336323062656430626137326664393735393966
65373531666663323361653866316666303632646630313931623232346562353463346362353330
36353438636333346135366135303561633261313262626464663038306139313338346136373537
65323237656266393233373138663165656362356234643261383863616561363864343966343261
34633064383436643332646633653337323762393638303639373631653939336132393465666462
64663037333530623639353934353034396234396261376332306266643163643038643437633933
39363731353466663537363735666333663238326238633030356462396139353962633036306538
39386636666563363735656230373032656164636137613464333763383032643139613366363433
39376661346431333765396133343466373832316334663530366464333365373562303462346465
66363565626363633635323466363861343664646531393835626236643132633265663131336432
64636535343438373166646636356530656131613535306238383332363535653665336661333566
63616239643239613366363661653738343837623165316635643938363863313539346232653865
65623363353466333033376438653161613364396661313762623161626666333130336161303733
61626534303263653239363132303261346364666531373836653239333562316262393636306137
64386563626664303838616332393566623565386662376434383064643234633762653166343562
32323438623132323330323732373737633135333233366466343133633938316235613237396463
63366336613965356262363330303036353632353236336235613861376535353232323363306236
61396664396234306534303734323931383035363235633164373865633538663134323165633938
32386139386462303466353331616361393834363865333833303633613365333939633665333333
38306564663862666239656365323261363439323131613464353834353762323262653564353734
34313739343164666334333633376131636462383232396334303763323163633935303233383232
64643234313835666432303361643364306339373730616535663831636566613538353238656461
31326335666465393730386164376465616430396265306632326535363062643930323633623265
37323563333861316566386361396236616638346137386162373865663836633963363038636235
39383831653932666439646465623666306133356434646164623938653737653466336364333865
38313432363265376566343737373835323566333534353563353663353938643734626538633163
30623032393533306231313239333065666566666230643736386661383763623532323934616631
33373132393430623536663566343738383866646336653630626362616237663037376664663137
30616161356163643031633561646539653961366238613331316466653537366331316164663336
31656634383036353937313162323163646465373363313332326331376330666539663534636234
61346436323264623266663733326630633034393861376338646363656531643665396333616561
36626335323939333337356265356464616335643266356563656263646138386261663137383937
38623066633433383162346330376431356163313166363163343834623435366438316238386130
62646638376466383066316430343330366632626237643936653831616139306365373939323064
37303632613536636565623336363336386262623861393031666531366634396636333965386265
35366561393634636662383239616330396364336231613731383363353635656161376163653739
30623539653161633531353161616462366263623039643838633365356266306237326332633764
30653261373265646433616638303865346361303038656566623633663032303239343766316436
34316239393535656238306237643332343264383133653237393630373534316439623962656165
30623439393136366366383439323633323533306566616362306261323337333264356534653365
65343161313538663265663861663361336537356166613231663031623131613264326466383130
64303366616537356264393663383763336231643037643336323231316437376536333062353639
38623136663762323533326533666135303235356130663932613763343963393962663433343139
66303035613930303935343935663362356561393862653938323833653139373161666365353135
31646332383164653133616663383563666366636362616466343965346535316630316236306164
37636334616538636434386133656164373837313738313035666332633037653333623461343831
34643134396530313136626434306263333737363032636134386135303939616335616636653463
65626535316438336233313566323731626632626632303734653963343364646564323566373337
35386138326633393263343633383537393338333136303830646631353965346334303866363465
62323261313566643335386533333636326334316465663535313464636263643231613135373336
30653235366434323033303461643864663632663039343132383237363466386265646365663939
37323738623366656261303934346438623133366233393437643962363438323535316663663063
65326262353361376162366262373833653931316239613433323563306133373833636364323139
37353361633039323566613262343266366439306462323364633132653261623234646332626130
63303039646131663336383031643430626630383764313330393364393530316262336634376334
63383261386539336635653337366338646565343133356262363065636562656338323137316562
61623430313263386330646537663135653165666234306466356633643238666464396533356331
61303966343838626336396333303466646262386639316665356534383537333236616266323866
35343932356133366233353635323963386466353363623361633838666364373065323632623931
61303730363435663630383336386262346636633463333239373066373866363661663537616534
37373164316438333136366336373835376235333762383931353830626465633536613364356662
30653464613131383232373132323035386230356634353132616266373739323539616137633366
64383562633931366431636166383430373161363931643262373665356134353836356138613535
35336264316662663330343733663834633738326534623039633465613339393335663166613362
36663339646234336334353736386337626330316133313632666231393564643430633739353736
35363264356565353138626531646234303638383832333030623366616134313265386235303963
32663861623862666661376461643633363263623063666236636332326339363263333363356132
65376137396463656533626336306238303738643330313736333335656133623438613934646366
31643933346639333934353836326163633265633439656165343634666366623736396433656435
34336262303431653263373030353438383163346531643435646164323532646430636661326337
36663933613831326131366566386537633235356131666563393932633131303461663866356665
39333430633030323435663962616436656230396564346339316131663161333133366364313065
64616133323331626634336631646664646564353232646361353461333161373439313737323765
38343931343533326264343732316361643161653034626161653434643262656335303935393666
36373063623266326331366539656635323632653331613132636537306430626238393631386333
63343261623963376439363836303362343136653165343938616636626431353830633365633933
34323735336231396138666364333237396361356164623366663130653637663734373037333465
39393535346163643936653636356531626363383437346461333561626136323132393365353162
64666532363838643031306636386465333266353432383164313831653438663165656539303836
66303436303764383132313063666638393630373238326464353264363064383138393734383161
63366537626636353065623138376363386333326338343838303566306530343231356136656634
36656236353331346331636363653162363835646563623866353430613539656666306533333161
36633664306563376665613161326536326637643036396163323735343030393666346566373932
36646137313134343339393062613435643232366165653537393163303333383836326136626365
31323234343035373932383066336530366661663064393733313430323338333963343730353637
32353564393837646437643463316465373162623534616433623137363966643535626530616137
63323232396163333236633064376236663237373638616134396164333261616237313836336434
65653563353033353334633831333430383064666335306538643632336464393261623434633132
30363039393330616262663738386231393736383862653637636338386432336666656364613862
37353462643266613865643061646431306539326637626638366631336665613738386130623138
37613463633165356134616430356537616332643831626566303033313463633262623665643437
65386437633762393032313532313362306437376364623365396635313937643439356536343432
35616561363831643063353032663436316662633964343735363662656565393562363333663039
65353064623664383934333965626339373838313037386239663464396231643937333533363839
36333261343337666265343039393062656239363136626335303463393761353561633638373031
35643865313764333139306664323038373763303962333134623034666431393963623131393230
36343966383037376163376335383165633231386531616336373565636435653439323931623361
34303363366436666236343964323934356661613232326562313765356563373437306661376661
34336364376430666265346236316565633465316139653635303738323366303432643263666161
65323866333366396337663539386231613237336230306539393331633165303234386534373764
62393339396432646439323563333465333032333337633833646165306433326132316363383163
37343162376332343363376534343763353536313031373933623539666330393665396535316334
35303262613138616434383730653537656439653364373066353236356334386633306130663866
32323331306331306138626339333832373731356466373666373463633038386137656638663562
3763
32303037383861306435323935613563623037323637393138353764313937633138333334623863
3039386338373864353137343637633864646464303661380a376238383938323563333135323538
66646531643738653932613766636339393734303134333836356139333839326665653636306335
6637306335643438630a643530383633383133336363626163393436326637376564613132393435
63373866346165373966653236313431363639616532346537343861316161613365383163366430
36383131333965623336343865353962386463333466313433396438346632303039663131313138
61623430356536373636363435396264616233616131373034356364616430343564393564343362
30613665313939623136646162343033326433613735316361613935663564353661616161633836
36323633633762376563663732666137633337346162343831393135663336663933663462346433
32303564656135356262646234623761663434643662336365623037306363616335666533376532
30353230663734326461313064383235316235356166303137333463613564336664613438626661
31313038633765326235396233373665316465386436363530353735646366613834343337306135
61376430373431373234316361383164373632653738663836393065656238626431643533336165
64373834643037633162633439386333333630363835396336656332376361613932663432313539
64303965643236336539386663336630643663663639373731373431386463626539393035303664
35623932333137323031383664323538663764323435313836666264613731343363356563326139
63333131393862613932336462633337373334326237346136613037633037336561393438323432
38376534633534663532386332373066663561366363303633376231363463333062323636663862
66613131626636613162656432393665303830663963616139363437376636363538343135343137
31643163623331613965623737646538306534393533623437613162646665616232613965393766
34396165313833613439346338656632663566646465373433343932396465343462633334333430
64643539386134323930656430303962653536643537636265313932633230306163366330636337
38343438313833336261623736613239356164303534396332343864393439313461336239373435
33333762623430383065373232326332643266383439636331373233633264336438336535396436
61336165663237656433396439663035343631386535333239326565653935613961366231346130
30656333313766303162623961646336366461306538306465643337623530336332613537366335
39363966623465613134383536633662666661333666393161386434333032383362626665353563
63613564373431626633666631626332373433633564636335643835356537316263313333656332
38316663643632616130336462646362623637306466343937343731333431353662383539653136
63336665323866353532303861623837376633663234656435666238363465313962623161323666
33633331333661326665326537326134333939366662343837653661653834373562303365306330
31346538393737363162616239386366336564383934366563346364663466383237323638623466
34383530383464663830323831636336303166666366333664643133626633626434613063373938
32646237393134663335343030653736373933306535376265386461616535333532326339393737
63383135653531326338323238636631666432313139323966646239666231303139386366613335
30313130303465643063383034326466643532626335356362343566326564306661323436343831
33626338646666626632333464306464353537323062633731313166376631306637666336623261
62313830663635336439353730666637333634656164366566333638653762626462366636613038
62343832336539366264613036616565616365383031373662326233373262313334333536613832
35623037306339623031613030323166326339363135633638393839316536623362363235613065
63383130666665323735616166306362383633386536356361356461656565613565313734653635
39373838616235633335326361326634303739396231613937323862623934363239636639383163
35383538353136613131336363616632393465393032653032343263383462383437363861386638
65336439623432663636633631633266346636333833353833386163383262663738636535323536
37373833396163373864336666616361323738343535343161663534346264336235356565316636
66643438333433346466373836613438653337303863316564656335363361643039616536373462
34393437353834323937636163666635626362313131393235646637613466363139633839633362
36303039303266653338373939646135626338346665633530323136363532356464393337393730
66346465623633393664386661396636653163653464643137323935356132336266343638356133
38336363336335393937613366326439343131326530643130336535333938636166386461656165
38333435646261623539666462343864356236636661386431356365356233346238613766643639
30336536343636613130373232366463616266353238376333336331623036386434633832643839
65353537373161623833636162353165626462663135653864636161656265383237363833316239
36316338346563633532343862663861666164653331323133396666626464353865326466356264
38633065333137326533306432303137396236373766643264383235633235306563393130663961
32383435626332343830633763343263336138643734343264396535383237376233373261633436
39613139313738356138366336393231633031386362643562396631346132636239366363656430
34336635333830366234363938396661303636633834633165616466363139356530366637336230
64663536343631653236313037386666303331346432396364323465653431323966653031313633
31393161366236376332623361313232626532613639386630316437343830393332383861343932
30396562363730613432346561636566646163616138336330306238616235316337613763373365
61333164653839323662366632323965346661366339623436646463633063336135646231376434
35643063386532326330396331303838663365353465646339343336663462313165396132343035
33643336326465633230663865663164623734333363646630666437666266336232323239316664
64633863623564366631306263653061616436373335303538376166656632646134366432633964
61646566663239336562363566336364633134316331323065636633373335663935333639633838
35643536326533616231646335336463373965333239363132393165643530343366336466646631
33616331633930663239343166613339633534356536373136353962396330356263623765643134
64346138353133623437316335353434653332643564306536303930366134636133343539323465
62376635623563373663396231623163353734323039613465633863303062353735326265343839
65336363303161663338646637393038366566333937656264373066353736666335353865353165
37363765373830316335393864633231663434646564653864623337386639313735316435396462
62393038313533393537353838363232626539386431306366333763343536613931306432633936
65633762373863613032613664306338613631343866323761373661386361626337346164383735
39316230353336373665386132646465656266623631643761653666336666383335313132643635
34353063326130386334386164376634383765653162336133663965306538303733376431323266
35336131633535306133666331323066326162373166323937376266323461396138323031396462
64666461333036353561393934616166313030623236643663623061386539333262376639616236
35353835666230383231626462666164323433656664343732393566636664666662316239323338
38616533346163623230336433623837376433616531303134616537643130326636626264643132
31616365396437626265656135366532326634303037653232616366316234656230326135666133
36333463366630373863666432396462373131333130366233383233303733373738323232316661
30646333316135373833613838623861636139383863306261353738653061356538623235616663
33633239336231663361636466373438343963393966313936326536363432333166373063376335
36333264373236376266343335656532666330373466386434336439393830656537393463656133
61636434306366363861633466626439316365343437313163613962326666336232346132663436
31323863646665363832393535353833346364653461383333353938336436666232303932306365
35373030336534336630363263636538346339643632633231653163393262643766356539376465
61323630353830393539313633323731376538383839613761633561363436393061663739323737
62653365393235363238666665333039393433383461653863653635613162633531363133633366
38653238383835623563333035353565343838343139373732663165303732373337613438343662
36633531383438326239623637366430623863616639346532393266353530616332653438313961
37353938656631393736666237383839303633643731646164323265353265656363396361316632
33303333373566356562656264623137376338333066316132363566386135393361623361306162
36376439373430646661633036313731663566393137323062306461363661323334326565623237
32623332393263353132383533383037666534323138633966333138343037326666373564633166
61623662653064323866633030373538653164383831653365306638363837326435393764343236
39386665383462343665336331656361656234353130353361386234386334303230653537623132
35636339393436656362636266386166653462393365376465613061663834613065663235616230
66633638383934386332323239353034376336366635326338303463386139616566386261306266
66633265643736646131646435396637636337333066393338663136643736653765386163333434
30646533623638396462376230316663636636633565353966623235383463323262363937323239
63313931656639643233333838663233306335656537313433386335313531356339336461663137
66626230393937333461636336653839383166306236656237313235323530656564346235303765
63333663333663363061653237363564303238356261623331663730616163386563616433353164
31636639343165303830303062613239366134343635653364316662646439663332346330346465
33646461363366343831613235626165663232633862656231313732653134353237333038383063
63303330613837633963643037396530633966663362613534373937626232636139646231396239
34333334643361313932323335363764353866636334383562633436663861653066336430623264
37316530653937616630343330656234656335373963323331356362363835636138393562336632
65336161373834376664353066666663393034623634346165343462366430333030663462396231
64633365336536313432363939373730303861616639383539616239616365346531356434353963
65343131663833613038396339356331616531333465623563316263633866323138386330643433
30623539623062343030356435313732333132313234326166376539613461363666353032386631
37353635393265363034386136393537653131633437343531336330333762303738666536633832
66653237303533353739633862346632613938336636623865383437313735323733653739343332
64666163363338346566653238643233613065356531663132616439653930323066353233386162
36373634386264313164373561636330333433373936626133626564633933313131646339393835
63653332656539333661636436636130313435393934653130666333383361393263306565613338
32326665336265313933323132363137333330396434623861346165636161333864623230353132
38333833336239663831396134653136616232353965383630303032626230343639386430333164
32646230643966623065383763353232626630656561353564326630336330356235643334303431
36303534633661613265313335393738653631616135316332663630346566363764393835383338
61646332643231643733623138373734613764636537313061303034386636663363336431383437
63373939636539386262346233376165396132343535383630363866316334646132656163633339
66326132613162306334653035373336373431336436366639623635636161656533383630383038
33616564336364313966313761613433366362656265333736313432646566343761633332333034
35323864623566396466353335356331336633646561646335336466353833633562306335666135
34653763633231336530333965656431663332656636336266356631633764623232333766303132
65323739366431653835343731303163613561353331663936386131313265376434306335346439
31396163393834326430633066393239333439393738353339383436313636306538303335363562
65336262306266636264346337343630366133376532626137616335303133306134313233633932
33666535323938643461393535343034393233383863623338653063333934636638336337616330
63343836363733633863653833663561346264353834646562613230646338636334343666366664
35623837303930323232646263643664383936313462386431366235633237353933353138616138
36623732626232303836363537353836393261323539643464363734656165333632623563663738
37613631653532656563323266353034303035306237313935633636643432653738396132633763
31353136633233633630666234303135396237633536666665303463333666333533623730643537
61643638393033376434346566326334313431343839393734656264663661343134396265393638
33363865336566616333633930643539616334373937633665326639343137383265613430326634
30396235303464663931323762663665316131306664303334636464376465356563623232313230
63376538616239303764656634303930316566396234313039346134663433666538643037333638
32616562383366656533363237313265386339646130333933373364316262626638343663303838
38656534663233646161666266316335303235333931373036353634303535356330313535656231
38366239373761343135323561636361303637326461363930353466373439343134353862643232
35393966303961316337613865626132626130373639306139616637386432343231633766353337
65336364626462333761323232386330386232353436326630613639363834376266343238376539
36623532366335323263646636363030613533323232396136386335623138313166363963663564
36356466353662336534396433376166396435306632666164663538353962613334373032393437
65336330653662323837636635326632326665366630386435633637346530306233306561623332
31646537333739343863343662376637383735373538656331333362363034646438346466333961
30343838326337373061366538313536636562373235623833383163656263323565373430336161
32313836343035663131626230363361633630376130636538363034363635303234313964643036
61636666653835313963623562373365396536333061316361633761313132623338613836353130
33376231666165343163663337636266653638326134316433343435663366326539303861376165
30346539633935623366393231663663336261316162373164383434663066626465326533306636
34643636316665656562316632643766356331613735653338363934303161336238666166323331
61343039373066326661376233366433636231316264346132666232643564333032333738396464
66643564373230613533323164376236353766343535643237323563393765363536323961333637
36303361666334656362643332393764616431636265346131373937353261373131663066626233
38373763616638616337616462373233323330346130326661343639333361336639386436393565
65623734393964656535646534663937613662363530343037633862613032626231376439306562
34396236323161313635326665643932316531343734663932343738636364343862373566313631
37656534626333646434383838313635313663343036343666346461343363383232333333383338
35636535653430313930623563363730666437346164623639343663666565376538383461326533
65616136393633643335373838356439323532636437626231656161333739303237313166383139
36373933346261313566636234323235383464313635383136656337663132353861633261393562
64323931666431633231393466356463383335306636636238656561633866316634643639373062
30316231663135643466326432386332383031663838623431313437623539353430663333653636
64636632656339323733336462316430626536326539623566626232333337643863386436366434
30333839656462653337373862313630313834353632646238646436666333393833376131313434
64306334356261326639346163363232323661333564356535633731316437393536346636386363
66306530376434346662353665393835663534663966613761643130396134353362633765623761
39616336663836653639633733373937653064306231383232633631326561643536313266643432
62393535653966623864373535313065653435383565666236326537353132386664393631643838
31363762633231326534343365373538333266353532366438643734323363333261633738333530
31646338613766373663623361373932663730643136333833363035323335623636643766646635
62613538666265306532623733653837356665393733396564623762643437306564306635306132
61623937323061363432643435323165323433356433633339326130383062313661386236326630
38626630663633303135323638656635356635333739626363353661393961643762613464326330
34386631616366316134373933386233656439653236306563323862653731633934643835633861
34373162366563386264666435616262633330633966313961376338376331376361346339663166
38376532613736386566646264626537323630326661616337616630316662313339306565653735
61373132363730323430343262656539313733363464633735613661346330326431353431626463
35303764363630373638303238656135373865313862363638363230636663653231623862626132
61666533346439633962356330376630363334373230663461363638666263616262366130643738
66663561656362323564333432633566666464376638626139333134353131653364376539656236
30646562366633306566326366636334303236326139333035396236613231643533646464303562
38626537336362623339383232326137373465346633663463643466336535313664613037333232
31663063313962353964636430666136373334386636343263393761353231323363643362633530
62363466646632643333343936653831343030653065666534383032623036323436326266663031
33313139376665303037623737343964646262393938376563353965646164383337343635303432
62396537323136653536373139616466313363613933353565383664336266353965376665366135
38376363363132626566363134616137666165306632303632366434373533353636653137306532
37656263386536633435623861333537376637303332646461396465386362623933643131653561
66326133653236626132643838356639613737313833386437393934376436386465303539393532
63646562623665363933616338376138333633323137323064396339613631663066636432373930
61356563363465336437663534363561636331656337656466366136353636393034313762333338
64653536396330353662333661353066633263343335616431376433303861393231636532313031
64313136386634653332636531363766613263316632666233633333376432346564383037363965
36316430323266356634363366636565373136356632623166373763353834666262653363616234
6432653264303834626534386532636331353861346661363061
---
enable_zram_swap: true
configure_network: true
dhcp: true
---
archweb_db_host: 'archlinux.org'
archweb_db_host: "{{ hostvars['archlinux.org']['wireguard_address'] }}"
# raise tcp window limits to 32MiB
tcp_rmem: "10240 87380 33554432"
......
hostname: "america.mirror.pkgbuild.com"
archive_domain: "america.archive.pkgbuild.com"
mirror_domain: "america.mirror.pkgbuild.com"
archweb_mirrorcheck_locations: [14, 15]
ipv4_address: "143.244.34.62"
ipv4_netmask: "/25"
ipv4_gateway: "143.244.34.126"
......
hostname: "asia.mirror.pkgbuild.com"
archive_domain: "asia.archive.pkgbuild.com"
mirror_domain: "asia.mirror.pkgbuild.com"
archweb_mirrorcheck_locations: [16, 17]
ipv4_address: "84.17.57.98"
ipv4_netmask: "/24"
ipv4_gateway: "84.17.57.110"
......
hostname: "europe.mirror.pkgbuild.com"
archive_domain: "europe.archive.pkgbuild.com"
mirror_domain: "europe.mirror.pkgbuild.com"
archweb_mirrorcheck_locations: [18, 19]
ipv4_address: "89.187.191.12"
ipv4_netmask: "/26"
ipv4_gateway: "89.187.191.62"
......
......@@ -8,7 +8,6 @@ ipv6_netmask: "/128"
ipv4_gateway: "49.12.124.65"
ipv6_gateway: "fe80::1"
filesystem: "btrfs"
network_interface: "en*"
system_disks:
- /dev/sda
- /dev/sdb
......
......@@ -10,6 +10,5 @@ fail2ban_jails:
ipv4_address: "95.216.189.61"
ipv6_address: "2a01:4f9:c010:3052::1"
dns_servers: ["127.0.0.1"]
wireguard_address: 10.0.0.14
wireguard_public_key: +RJ/ZNRmw2uCHxSjJZHftk7lWUl5nJ6VSZww8GPwhEI=
---
filesystem: btrfs
static_dns: true
wireguard_address: 10.0.0.15
wireguard_public_key: QWkTL58mJd0+Lz5AvGVmbdSSk29y/W60WUdhTgyGLCk=
---
mirror_domain: mirror.pkgbuild.com
archweb_mirrorcheck_locations: [12, 13]
archweb_mirrorcheck_locations: [20, 21]
filesystem: btrfs
ipv4_address: "78.46.209.220"
......