Skip to content

Commit

Permalink
Add script to create uploads.ini file
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Mar 12, 2024
1 parent 9c0e931 commit 97cbe29
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions imageroot/update-module.d/10create-upload.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

#
# Copyright (C) 2023 Nethesis S.r.l.
# SPDX-License-Identifier: GPL-3.0-or-later
#

# This script is used to create a uploads.ini fro php directives

if [[ -f config/uploads.ini ]]; then
echo "config/uploads.ini already exists, skipping"
exit 0
fi
../actions/create-module/10uploads.ini

0 comments on commit 97cbe29

Please sign in to comment.