Skip to content

Commit

Permalink
Fix APP_NAME in startup script
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnavarro committed Apr 17, 2024
1 parent 35393e1 commit 6c5a9e6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v2.0.2 2024-04-17 JP
- Fix APP_NAME in startup scripts

v2.0.1 2024-04-17 JP
- Fix path to scrips in crontabs

Expand Down
4 changes: 2 additions & 2 deletions sbin/router_accessdb-fos.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

### BEGIN INIT INFO
# Provides: %APP_NAME%
# Provides: %APP_NAME%-fos
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
Expand All @@ -11,7 +11,7 @@
### END INIT INFO

####### Customizations START #######
APP_NAME=%APP_NAME%
APP_NAME=%APP_NAME%-fos
APP_HOME=%APP_HOME%
WAREHOUSE_DJANGO=%WAREHOUSE_DJANGO%
# Override in shell environment
Expand Down
4 changes: 2 additions & 2 deletions sbin/router_accessdb-person.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

### BEGIN INIT INFO
# Provides: %APP_NAME%
# Provides: %APP_NAME%-person
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
Expand All @@ -11,7 +11,7 @@
### END INIT INFO

####### Customizations START #######
APP_NAME=%APP_NAME%
APP_NAME=%APP_NAME%-person
APP_HOME=%APP_HOME%
WAREHOUSE_DJANGO=%WAREHOUSE_DJANGO%
# Override in shell environment
Expand Down
4 changes: 2 additions & 2 deletions sbin/router_accessdb-usermap.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

### BEGIN INIT INFO
# Provides: %APP_NAME%
# Provides: %APP_NAME%-usermap
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
Expand All @@ -11,7 +11,7 @@
### END INIT INFO

####### Customizations START #######
APP_NAME=%APP_NAME%
APP_NAME=%APP_NAME%-usermap
APP_HOME=%APP_HOME%
WAREHOUSE_DJANGO=%WAREHOUSE_DJANGO%
# Override in shell environment
Expand Down

0 comments on commit 6c5a9e6

Please sign in to comment.