new: [add] init commit, elab-update, elab-manage-install & scripts
This commit is contained in:
37
bin/elab-update
Executable file
37
bin/elab-update
Executable file
@@ -0,0 +1,37 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Define the repository path
|
||||
REPO_PATH="/opt/apps/elab-manage"
|
||||
|
||||
# Function to update the git repository
|
||||
update_repo() {
|
||||
echo "Updating the git repository..."
|
||||
cd "$REPO_PATH" || {
|
||||
echo "Error: Unable to find the repository at $REPO_PATH";
|
||||
exit 1;
|
||||
}
|
||||
git pull -r || {
|
||||
echo "Error: Unable to update the repository";
|
||||
exit 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
# Function to update symbolic links
|
||||
update_symlinks() {
|
||||
echo "Updating symbolic links for cron.daily..."
|
||||
# Update or add new symbolic links for cron.daily and cron.hourly
|
||||
for dir in "cron."{daily,hourly}; do
|
||||
find -L /etc/$dir -maxdepth 1 -type l -ilname $REPO_PATH/etc/$dir\* -delete
|
||||
ln -sf $REPO_PATH/etc/$dir/* /etc/$dir
|
||||
done
|
||||
|
||||
echo "Symbolic links have been successfully updated."
|
||||
}
|
||||
|
||||
# Update the git repository and symbolic links
|
||||
update_repo
|
||||
update_symlinks
|
||||
|
||||
echo "Elabore Update complete."
|
Reference in New Issue
Block a user