Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • dapcash/prod_build_dapcash-node
1 result
Show changes
Commits on Source (1)
......@@ -89,6 +89,11 @@ else
for username in $(cat /etc/passwd | grep "/home" | cut -d ':' -f1); do
usermod -aG dapcash-node $username
done
echo "[ ] Enabling logrotate"
ln -sf $DAP_PREFIX/share/logrotate/$DAP_APP_NAME /etc/logrotate.d/$DAP_APP_NAME || true
adduser --system --no-create-home --group --home /opt/$DAP_APP_NAME $DAP_APP_NAME || true
mkdir -p $DAP_PREFIX/var/{run,lib/ca,lib/wallet,lib/global_db}
touch $DAP_PREFIX/var/run/dapcash-node.pid
#chown -R $USERMAN:$USERMAN $DAP_PREFIX
......