Skip to content

Commit

Permalink
fix(doppler): Set remote user as owner
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmechlark committed Jan 30, 2024
1 parent c4201fd commit 05fbcb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/doppler/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ setup_doppler() {
chown -R ${_REMOTE_USER}:${_REMOTE_USER} /var/lib/doppler \
&& chmod 740 /var/lib/doppler \
&& mkdir ${_REMOTE_USER_HOME}/.doppler
&& mkdir ${_REMOTE_USER_HOME}/.doppler \
&& chown -R ${_REMOTE_USER}:${_REMOTE_USER} ${_REMOTE_USER_HOME}/.doppler \
&& chmod 740 ${_REMOTE_USER_HOME}/.doppler
# Execute whatever commands were passed in (if any). This allows us
# to set this script to ENTRYPOINT while still executing the default CMD.
Expand Down

0 comments on commit 05fbcb6

Please sign in to comment.