diff options
| -rw-r--r-- | .drone.yml | 4 | ||||
| -rw-r--r-- | sanoid-prune.service | 2 | ||||
| -rw-r--r-- | sanoid.service | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -21,7 +21,7 @@ steps: - # checkout latest stable release or stay on master for bleeding edge stuff (but expect bugs!) #- git checkout $(git tag | grep "^v" | tail -n 1) #- export version=$(git tag | grep "^v" | tail -n 1 | tr -d v) - - export version=3.0.2 + - export version=3.0.3 - ls -lah - pwd - chmod 0755 sanoid @@ -66,7 +66,7 @@ steps: - cd sanoid - ls -lah - pwd - - export version=3.0.2 + - export version=3.0.3 - echo $version - | curl -X POST -H "token: $auth_token" -F "file=@./sanoid_$(echo $version).deb" http://docker10.grote.lan:5040/upload diff --git a/sanoid-prune.service b/sanoid-prune.service index 03a27f6..994f26e 100644 --- a/sanoid-prune.service +++ b/sanoid-prune.service @@ -8,7 +8,7 @@ ConditionFileNotEmpty=/etc/sanoid/sanoid.conf [Service] Type=oneshot Environment=TZ=UTC -ExecStart=/usr/sbin/sanoid --prune-snapshots --verbose +ExecStart=/usr/bin/sanoid --prune-snapshots --verbose [Install] WantedBy=sanoid.service diff --git a/sanoid.service b/sanoid.service index 300a110..3ab70b3 100644 --- a/sanoid.service +++ b/sanoid.service @@ -10,4 +10,4 @@ ConditionFileNotEmpty=/etc/sanoid/sanoid.conf [Service] Type=oneshot Environment=TZ=UTC -ExecStart=/usr/sbin/sanoid --take-snapshots --verbose +ExecStart=/usr/bin/sanoid --take-snapshots --verbose |