Some more articles reformatting

This commit is contained in:
Julien Dessaux 2021-03-11 23:15:31 +01:00
parent 6c98a74ed5
commit 8d4bb3881d
19 changed files with 80 additions and 55 deletions

View file

@ -1,12 +1,14 @@
---
title: "etc-update script for alpine linux"
linkTitle: "etc-update script for alpine linux"
date: 2019-04-02
description: >
etc-update script for alpine linux
description: etc-update script for alpine linux
tags:
- Alpine Linux
---
Alpine linux doesn't seem to have a tool to merge pending configuration changes, so I wrote one :
## The script
Alpine linux doesn't seem to have a tool to merge pending configuration changes, so I wrote one :
{{< highlight sh >}}
#!/bin/sh
set -eu
@ -35,4 +37,3 @@ for new_file in $(find /etc -iname '*.apk-new'); do
done
done
{{< /highlight >}}