From d7a1e6f58a9ee3f32bbdfe4b336c9f07641e093c Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sun, 17 Aug 2025 11:49:05 -0700 Subject: [PATCH] Remove hugo user reference from files. --- Config/HugoExample/Dockerfile | 4 ++-- Config/HugoExample/files/{hugo.cronjob.sh => cronjob.sh} | 0 Config/HugoExample/files/{hugo.crontab => crontab} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Config/HugoExample/files/{hugo.cronjob.sh => cronjob.sh} (100%) rename Config/HugoExample/files/{hugo.crontab => crontab} (100%) diff --git a/Config/HugoExample/Dockerfile b/Config/HugoExample/Dockerfile index 510f709..01a4ae5 100644 --- a/Config/HugoExample/Dockerfile +++ b/Config/HugoExample/Dockerfile @@ -17,8 +17,8 @@ RUN mkdir -pv /var/www/hugo/ RUN mkdir -pv /var/www/html/ # Copy Cron Job to Update Git Repo -COPY files/hugo.crontab /etc/crontab -COPY files/hugo.cronjob.sh /var/www/hugo/cronjob.sh +COPY files/crontab /etc/crontab +COPY files/cronjob.sh /var/www/hugo/cronjob.sh # Hugo User Permissions RUN chown -Rv www-data:www-data /var/www/ diff --git a/Config/HugoExample/files/hugo.cronjob.sh b/Config/HugoExample/files/cronjob.sh similarity index 100% rename from Config/HugoExample/files/hugo.cronjob.sh rename to Config/HugoExample/files/cronjob.sh diff --git a/Config/HugoExample/files/hugo.crontab b/Config/HugoExample/files/crontab similarity index 100% rename from Config/HugoExample/files/hugo.crontab rename to Config/HugoExample/files/crontab