Projects
jsj
jsj-installtools
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 123
View file
jsj-installtools.changes
Changed
@@ -1,4 +1,13 @@ ------------------------------------------------------------------- +Sat Aug 23 08:07:46 UTC 2025 - Stefan Botter <obs@botter.cc> + +- CreateConfig: negate check for LOC +- PrepareApacheConfig: correct file globbing for modification of + config files (compatibility 2.4) +- PrepareUpdateCrontab: correct test for /etc/crontab modification + already present, to avoid unnecessary duplicate entries + +------------------------------------------------------------------- Sat Aug 23 07:45:05 UTC 2025 - Stefan Botter <obs@botter.cc> - CreateConfig: catch default while not supplying LOC on command line
View file
CreateConfig
Changed
@@ -47,7 +47,7 @@ fi ;; loc=*|LOC=*) LOC=${1##*=} - if ! -z $LOC ; then + if -z $LOC ; then LOC="jsj" fi case $LOC in @@ -64,7 +64,7 @@ esac shift done -if ! -z $LOC ; then +if -z $LOC ; then LOC="jsj" fi if $FTPD = 1 ; then
View file
PrepareApacheConfig
Changed
@@ -61,7 +61,7 @@ if ${VERSION_ID%%.*} -ge 13 ; then sed -i -e '/^ *Order .*allow/ i\ \ \ \ \ \ \ \ Require all granted' \ -e '/^ *Order .*allow/ d' \ - -e '/^ *\(Allow\|Deny\) from/ d' /etc/apache2/vhosts.d/?$HOSTNAME.conf + -e '/^ *\(Allow\|Deny\) from/ d' /etc/apache2/vhosts.d/$HOSTNAME.conf /etc/apache2/vhosts.d/$SHOST$HOSTNAME.conf fi /usr/sbin/a2enmod headers rewrite else
View file
PrepareUpdateCrontab
Changed
@@ -6,7 +6,7 @@ chmod 644 /etc/zypp/zypp.conf zypper -n in -l yast2-online-update-configuration egrep /cron.hourly /etc/crontab -if $? ; then +if $? = 1 ; then cat - >> /etc/crontab << EOF 59 * * * * root rm -f /var/spool/cron/lastrun/cron.hourly 14 0 * * * root rm -f /var/spool/cron/lastrun/cron.daily
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.