feat: migrate from archiso to artools — are you threatening me in SKECHERS?!
Strip out archiso (airootfs, efiboot, syslinux, mkarchiso, prepare.sh, Dockerfile, mirrorlist, profiledef.sh, packages.x86_64, reset.sh, run_before_squashfs.sh) and adopt artools buildiso with full antergos iso-profiles. Bitch, you NEED therapy. Are you threatening me? - 154 files changed, 2804 insertions, 7352 deletions - buildiso wrapper + iso-profiles/antergos/ (profile.yaml, root-overlay, live-overlay) + iso-profiles/common/common.yaml - pacman.conf.d/iso-x86_64.conf with antergos-pkgs repo first ...Are you THREATENING me in SKECHERS?! - Calamares offline + online module dirs, antergos-next branding - componentName must match dir or Branding.cpp goes full T-square - calamares before calamares-branding-antergos-next so --overwrite='*' wins correctly. YOU'RE ON YOUR FOURTH WIFE RIGHT NOW- - calamares-next.desktop in live-overlay (/usr/share + /etc/skel/Desktop) - netinstall.yaml bundled. No remote deps. Kill that bitch (Cnchi). What fuckin' college would care if you drew some bullshit picture about your feelings? - CI: artixlinux/artixlinux:base container, install artools, buildiso -p antergos, IA upload with collection=open_source_software. Class is in session. Maybe I should grow 40 feet! Then you'd REALLY like me! - IA: mediatype=software keeps us out of Community Texts jail. The question is; what's this stick gonna do? It's honestly super humbling, when the trashiest repo you know; probably coked out of its mind... says the most thoughtful thing you've done in years. - README.md rewritten with Artix/OpenRC/KDE badges, build instructions, migration notes. Nice SpongeBob impression. ...Nice SpongeBob impression. - AGENTS.md updated (identity ritual, gotchas, commands, repo layout) - Restore LICENSE, NOTICES, APOLOGY.txt, CHANGELOG.md from git history. Some files you just don't let die. No matter what, you NEVER use that N-word! (...should've said nothing.) - .gitignore: work/ iso/ out/. Go work at Starbucks with your little apron. So laugh all you want. Forget about me all you want. But at least I'll be gorgeous forever. Mother, I'm in the SquashFS now. Signed-off-by: Celestia Ludenberg <ash8820@proton.me>
This commit is contained in:
@@ -0,0 +1,276 @@
|
||||
#############################################################################
|
||||
# Default syslog-ng.conf file which collects all local logs into a
|
||||
# single file called /var/log/messages.
|
||||
#
|
||||
|
||||
@version: 4.8
|
||||
@include "scl.conf"
|
||||
|
||||
source s_local {
|
||||
system();
|
||||
internal();
|
||||
};
|
||||
|
||||
source s_network {
|
||||
default-network-drivers(
|
||||
# NOTE: TLS support
|
||||
#
|
||||
# the default-network-drivers() source driver opens the TLS
|
||||
# enabled ports as well, however without an actual key/cert
|
||||
# pair they will not operate and syslog-ng would display a
|
||||
# warning at startup.
|
||||
#
|
||||
#tls(key-file("/path/to/ssl-private-key") cert-file("/path/to/ssl-cert"))
|
||||
);
|
||||
};
|
||||
|
||||
destination d_local {
|
||||
file("/var/log/messages");
|
||||
file("/var/log/messages-kv.log" template("$ISODATE $HOST $(format-welf --scope all-nv-pairs)\n") frac-digits(3));
|
||||
};
|
||||
destination d_acpid {
|
||||
file("/var/log/acpid.log");
|
||||
};
|
||||
destination d_authlog {
|
||||
file("/var/log/auth.log");
|
||||
};
|
||||
destination d_console {
|
||||
usertty("root");
|
||||
};
|
||||
destination d_cron {
|
||||
file("/var/log/crond.log");
|
||||
};
|
||||
destination d_daemon {
|
||||
file("/var/log/daemon.log");
|
||||
};
|
||||
destination d_debug {
|
||||
file("/var/log/debug.log");
|
||||
};
|
||||
destination d_errors {
|
||||
file("/var/log/errors.log");
|
||||
};
|
||||
destination d_everything {
|
||||
file("/var/log/everything.log");
|
||||
};
|
||||
destination d_iptables {
|
||||
file("/var/log/iptables.log");
|
||||
};
|
||||
destination d_kernel {
|
||||
file("/var/log/kernel.log");
|
||||
};
|
||||
destination d_lpr {
|
||||
file("/var/log/lpr.log");
|
||||
};
|
||||
destination d_mail {
|
||||
file("/var/log/mail.log");
|
||||
};
|
||||
destination d_messages {
|
||||
file("/var/log/messages.log");
|
||||
};
|
||||
destination d_news {
|
||||
file("/var/log/news.log");
|
||||
};
|
||||
destination d_ppp {
|
||||
file("/var/log/ppp.log");
|
||||
};
|
||||
destination d_syslog {
|
||||
file("/var/log/syslog.log");
|
||||
};
|
||||
# Log everything to tty12
|
||||
destination d_tty12 {
|
||||
file("/dev/tty12");
|
||||
};
|
||||
destination d_user {
|
||||
file("/var/log/user.log");
|
||||
};
|
||||
destination d_uucp {
|
||||
file("/var/log/uucp.log");
|
||||
};
|
||||
|
||||
filter f_acpid {
|
||||
program("acpid");
|
||||
};
|
||||
filter f_auth {
|
||||
facility(auth);
|
||||
};
|
||||
filter f_authpriv {
|
||||
facility(auth, authpriv);
|
||||
};
|
||||
filter f_crit {
|
||||
level(crit);
|
||||
};
|
||||
filter f_cron {
|
||||
facility(cron);
|
||||
};
|
||||
filter f_daemon {
|
||||
facility(daemon);
|
||||
};
|
||||
filter f_debug {
|
||||
not facility(auth, authpriv, news, mail);
|
||||
};
|
||||
filter f_emergency {
|
||||
level(emerg);
|
||||
};
|
||||
filter f_err {
|
||||
level(err);
|
||||
};
|
||||
filter f_everything {
|
||||
level(debug..emerg) and not facility(auth, authpriv);
|
||||
};
|
||||
filter f_info {
|
||||
level(info);
|
||||
};
|
||||
filter f_iptables {
|
||||
match("IN=" value("MESSAGE")) and match("OUT=" value("MESSAGE"));
|
||||
};
|
||||
filter f_kernel {
|
||||
facility(kern) and not filter(f_iptables);
|
||||
};
|
||||
filter f_lpr {
|
||||
facility(lpr);
|
||||
};
|
||||
filter f_mail {
|
||||
facility(mail);
|
||||
};
|
||||
filter f_messages {
|
||||
level(info..warn) and not facility(auth, authpriv, mail, news, cron) and not program(syslog-ng) and not filter(f_iptables);
|
||||
};
|
||||
filter f_news {
|
||||
facility(news);
|
||||
};
|
||||
filter f_notice {
|
||||
level(notice);
|
||||
};
|
||||
filter f_ppp {
|
||||
facility(local2);
|
||||
};
|
||||
filter f_syslog {
|
||||
program(syslog-ng);
|
||||
};
|
||||
filter f_user {
|
||||
facility(user);
|
||||
};
|
||||
filter f_uucp {
|
||||
facility(uucp);
|
||||
};
|
||||
filter f_warn {
|
||||
level(warn);
|
||||
};
|
||||
|
||||
log {
|
||||
source(s_local);
|
||||
|
||||
# uncomment this line to open port 514 to receive messages
|
||||
#source(s_network);
|
||||
# destination(d_local);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_acpid);
|
||||
destination(d_acpid);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_authpriv);
|
||||
destination(d_authlog);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_cron);
|
||||
destination(d_cron);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_daemon);
|
||||
destination(d_daemon);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_debug);
|
||||
# destination(d_debug);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_emergency);
|
||||
# destination(d_console);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_err);
|
||||
destination(d_errors);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_everything);
|
||||
destination(d_everything);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_iptables);
|
||||
# destination(d_iptables);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_kernel);
|
||||
destination(d_kernel);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_lpr);
|
||||
# destination(d_lpr);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_mail);
|
||||
# destination(d_mail);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_messages);
|
||||
# destination(d_messages);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_news);
|
||||
# destination(d_news);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_ppp);
|
||||
# destination(d_ppp);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_user);
|
||||
destination(d_user);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
filter(f_uucp);
|
||||
destination(d_uucp);
|
||||
};
|
||||
log {
|
||||
source(s_local);
|
||||
# filter(f_syslog);
|
||||
# destination(d_syslog);
|
||||
};
|
||||
# Log everything to tty12
|
||||
log {
|
||||
source(s_local);
|
||||
# destination(d_tty12);
|
||||
};
|
||||
|
||||
options {
|
||||
chain_hostnames(off);
|
||||
create_dirs(no);
|
||||
dns_cache(no);
|
||||
flush_lines(0);
|
||||
group("log");
|
||||
keep_hostname(yes);
|
||||
log_fifo_size(10000);
|
||||
perm(0640);
|
||||
stats(freq(0));
|
||||
time_reopen(10);
|
||||
use_dns(no);
|
||||
use_fqdn(no);
|
||||
};
|
||||
Reference in New Issue
Block a user