Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iml-backup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IML Open Source
iml-backup
Merge requests
!29
remove scheduler.sh
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
remove scheduler.sh
eliminate-scheduler
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Hahn Axel (hahn)
requested to merge
eliminate-scheduler
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
78779ad0
1 commit,
3 years ago
2 files
+
0
−
37
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
scheduler.sh deleted
100755 → 0
+
0
−
32
View file @ 33b2262c
#!/bin/bash
# ================================================================================
#
# SCHEDULER
#
# schedule backups.
# If backup time is reached then
# - the local dumps for all database types will be performed
# - transfer of data directories will be started
#
# This script is added as cron (see /etc/cron.d/)
#
# SYNTAX
# scheduler.sh [option]
#
# OPTIONS
# default: no parameter: check jobs/backups.job for scheduling backups
# -d, --dryrun check date only; no run of a backup
# -f, --force: force incremental backup NOW.
#
# --------------------------------------------------------------------------------
# ah - Axel Hahn <axel.hahn@iml.unibe.ch>
# ds - Daniel Schueler <daniel.schueler@iml.unibe.ch>
#
# 2016-11-10 ah,ds v1.0
# ================================================================================
echo
"ERROR:
$0
was DISABLED."
echo
"start
$(
dirname
\"
$0
\"
)
/backup.sh by cron when you wish to start the backup."
exit
1
# --------------------------------------------------------------------------------
Loading