16 lines
330 B
Bash
Executable file
16 lines
330 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ "$HOSTNAME" != lime2 ] || exit 1
|
|
|
|
echo "Updating index.html"
|
|
|
|
chmod 644 ./index.html
|
|
|
|
awk -v header="$(<./header.html)" '{sub(/===HEADER===/,header)} 1' ./index.template.html |
|
|
awk -v footer="$(<./footer.html)" '{sub(/===FOOTER===/,footer)} 1' > ./index.html
|
|
|
|
chmod 444 ./index.html
|
|
|
|
git add ./index.html
|
|
|
|
exit 0
|