init checkin

This commit is contained in:
2025-04-14 17:45:13 -04:00
parent 131f0f6aba
commit 12a3c205f2
2 changed files with 79 additions and 0 deletions

11
push Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
declare -A file_dest
file_dest['mpd.conf']='/etc/mpd.conf'
for file in "${file_dest[@]}"; do
dest="${file_dest["$file"]}"
diff -y "$file" "$dest"
sudo cp "$file" "$dest"
sudo chown root:root "$dest"
done