Rebased againt resolve-network-public-interface
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Advanced Search
Oct 21 2024
Oct 20 2024
web-001 on the same hypervisor has correct IPv6 support, we can do the same for Hervil with the /56 trick and the hello trick:
Those parameters are still valid with the new installation by Dorian.
Per discussion between Nasqueron Operations SIG in June, we decided to use ViMbAdmin to provision mailboxes:
sqlite is the RHEL package name
This mailbox has been created.
Postfix installation works fine since the summer.
[ If anyone wants to help us to setup the mail server, this task is up-to-grab. We're busy on a lot of tasks currently. ]
[ If anyone wants to help us to setup the mail server, this task is up-to-grab. We're busy on a lot of tasks currently. ]
Current state
dirs was imported instead of packages_prefixes
Oct 19 2024
Deployed on WindRiver
Next step: Debian package, move wurf in universal list.
Import script to create the commits:
| 1 | #!/bin/sh |
|---|---|
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | BASE_DIR=$HOME/dev/nasqueron/wurf/archiv |
| 6 | DATE="Fri Dec 31 23:59:59 2004 +0000" |
| 7 | |
| 8 | for file in $(grep fileserv /tmp/all.txt) |
| 9 | do |
| 10 | cp $BASE_DIR/$file fileserv.py |
| 11 | git add fileserv.py |
| 12 | git commit -m "Import archive of $file" --author="Simon Budig <simon@budig.de>" --date="$DATE" |
| 13 | done |
| 14 | |
| 15 | git mv fileserv.py woof.py |
| 16 | |
| 17 | for file in $(grep woof /tmp/all.txt) |
| 18 | do |
| 19 | cp $BASE_DIR/$file woof.py |
| 20 | git add woof.py |
| 21 | git commit -m "Import archive of $file" --author="Simon Budig <simon@budig.de>" --date="$DATE" |
| 22 | done |