We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5108dca commit 18ee028Copy full SHA for 18ee028
.github/workflows/release.yml
@@ -43,6 +43,7 @@ jobs:
43
path: release
44
45
deploy-nonpublic-packagecloud:
46
+ if: startsWith(github.ref, 'refs/tags/v')
47
needs: release
48
name: Deploy Nonpublic PackageCloud
49
runs-on: ubuntu-latest
package/override.conf
@@ -0,0 +1,8 @@
1
+# This is an example of how to override the user to something other than root.
2
+# Install this file to: /etc/systemd/system/fogwillow.service.d/override.conf
3
+# We use this file in production to run fogwillow on a notifiarr worker.
4
+[Service]
5
+User=abc
6
+Group=abc
7
+PermissionsStartOnly=true
8
+ExecStartPre=/bin/chown -R abc: /var/log/fogwillow
0 commit comments