Tuesday, January 20, 2026 at 21:41:57
Something that runs around 6:19am on vps is shutting down apache2, then trying to restart/graceful restart it, but the restart fails because it runs BEFORE apache2 shuts down.
I’m currently attempting to edit /etc/needrestart/needrestart.conf (found this after hours of searching):
changed this:
#$nrconf{restart} = ‘i’;
to this:
$nrconf{restart} = ‘a’;
Fingers crossed.
Also, added this block to /etc/apt/apt.conf.d/50unattended-upgrades
Unattended-Upgrade::Post-Invoke-Success {
"if systemctl list-units --all --type=service | grep -q 'apache2'; then systemctl restart apache2; fi";
};
Thursday, May 8, 2025 at 17:09:50
To use on same machine:
- Log in as user (not gituser)
-
cd /home/thisuser/
-
mkdir gitstuff
-
cd gitstuff
-
git config --global user.email "thisuser@localhost"
-
git config --global user.name "thisuser"
-
git clone /usr/local/gitpath/newrepositoryname
- At this point, you have an empty directory. Add files, do ‘git add *’, then ‘git commit’, and it will be pushed to main git path.
To use on different machine (linux anyway):
Saturday, August 3, 2024 at 15:35:00
both Ionos systems were inaccessible, had to restart both.
Tuesday, July 9, 2024 at 20:25:14
Smarty in Flatpress is a new version, and doesn’t take kindly to includes that don’t have quotes. So to get themes to work I’m having to edit the files 😣
Things that look like this:
{include file=header.tpl}
should look like this:
{include file='header.tpl'}
Some more gotchas listed here: https://wiki.flatpre … /doc:tips:smarty2to4