Change | User | Description | Committed |
---|---|---|---|
31345 | Mark Zinthefer | Adding trigger script to enforce the type of a changelist to "restricted" | 7 days ago |
31344 | C. Thomas Tyler | Added default P4ALIASES for perforce OS user to SDP. | 8 days ago |
31329 | C. Thomas Tyler | Added summary of errors and warnings at the end. This summary is displayed by default. A... '-skip_summary' option has been added to suppress the summary. Added checks for existence of statepullL and statefailover files in P4ROOT on p4d servers. A warning is reported if these files exist, advising the user to remove these failover remnant files. Addressed some issues reported by shellcheck. #review-31330 @robert_cowham « |
11 days ago |
31325 | C. Thomas Tyler |
Minor doc tweaks to add more detail on sync_replica.sh and keep_offline_db_current.sh. |
17 days ago |
31317 | C. Thomas Tyler | Tweaked set of tables to be used for edge servers to work for recovery with modern SDP on... a pre-2019.1 data set. The CheckpointTables variable appends db.storage only if the p4d version is new enough to use db.storage. « |
24 days ago |
31314 | C. Thomas Tyler | Added P4IGNORE entries useful clients associated with the //sdp/dev_insitu stream rooted... at /p4. « |
27 days ago |
31313 | C. Thomas Tyler | Added '.service' alternatives for all systemctl services, because command completion on s...ome platforms appends the '.service' suffix, and the sudo entries will not work unless '.service' is listed. So for example, now both of these will work: $ sudo systemctl start p4d_1 $ sudo systemctl start p4d_1.service Added support for the opt_perforce_sdp_backup service and timer, including adding explicit support for enabling and disabling the timer. « |
29 days ago |
31311 | C. Thomas Tyler | Updated run_if_*.sh scripts: * Fixed bug in run_if_broker.sh. * Normalized command line v...erification. * Removed 'set -e' from run_if_*.sh scripts to improve reliability. * Made ShellCheck compliant. #review-31312 « |
about a month ago |
31310 | C. Thomas Tyler | Simplified and clarified messaging about Mac OSX support: It is not supported. Also... added clarity about bash version requirements, i.e. requires bash 4.x+, works with 5.x+. (Lack of support for Mac OSX is for several reasons, one being that Mac OSX as of Sequoia ships only with bash 3.x). « |
about a month ago |
31307 | C. Thomas Tyler | Added mention of SuSE 15 in PLATFORM SUPPORT section, after recent changes to support tha...t platform. « |
about a month ago |
31306 | C. Thomas Tyler | Doc tweak; non-functional change. | about a month ago |
31304 | C. Thomas Tyler | Corrected '*/60 * * * *' entries in crontab to be "0 * * * *'. This has the same ... meaning (run every hour), but uses valid syntax that works across Linux distros. The */60 syntax, while technically invalid, is interpreted as intended on RHEL/Rocky and Ubuntu distros, but is rejected as invalid on SuSE Linux (where it is righteously rejected). Replacing '*/60' with '0' has the same symantic mealing but uses a syntax valid across platforms. « |
about a month ago |
31303 | C. Thomas Tyler | Fixed issue where invalid sudoers file could be generated if setcap and getcap are not av...ailable, e.g. on SuSE 15 systems. Added helix-auth to standard list of managed services. « |
about a month ago |
31300 | C. Thomas Tyler | Made 'p4p' and 'p4proxy' completely synonomous. Fixed an issue in mkdirs.sh where, if i...nstalling proxy with 'ServerType=p4p' in the config file but not using '-t p4p', it would trying installing non-proxy elements. Similar for p4broker. This was due to logic determining user intent occuring only during command line processing needed to be deferred until after the config file was processed, allowing either '-t p4p' on the command line or 'ServerType=p4p' in the mkdirs.cfg file to have the same effect, as intended. command line processing « |
about a month ago |
31297 | C. Thomas Tyler | Fixed bug adding multiple additional OS groups. | about a month ago |
31293 | C. Thomas Tyler | Fixed chicken-and-egg issue with non-default p4d version selected in install_sdp.sh leadi...ng to mkdirs.sh error. This fix also makes determination of the default version for P4 binaries more robust. « |
about a month ago |
31290 | C. Thomas Tyler |
Completed changes needed to make p4d_master an alias for p4d_commit and still allow both. |
about a month ago |
31285 | C. Thomas Tyler | Fix so MASTER_ID value written into mkdirs.N.cfg file is correct. This fixes an issue whe...re p4_N.vars files are generated with an incorrect P4MASTER_ID value. With this change, passsing the ServerID from install_sdp.sh to called mkdirs.sh will no longer require the '-s <ServerID>' nor the '-t <ServerType>' command line options. Also change text in generated config file to indicate that it is OK to set the ServerID of a commit/master server if you have a desired ServerID that is different from the SDP-default (currently master.N). Adjusted terminology to prefer 'p4d_commit' over 'p4d_master', but preserve p4d_master as a synonym for backward compatibility with older config giles. #review-31286 « |
about a month ago |
31282 | C. Thomas Tyler | Added policycoreutils-python-utils package to yum/dnf repo list. | about a month ago |
31270 | Robert Cowham | Change tuned profile to do bootloader stuff if required | about a month ago |
31262 | C. Thomas Tyler | Fixed issue with detection of whether 'perforce' user pre-exists if it was created with L...DAP (where the 'id -u' is not a reliable check). This resulted in a failure to create the perforce OS user because 'useradd' won't work in an LDAP environment. Warning: Review code carefully; the test suite does not currently simulate an LDAP environment, so this requires manual testing in an LDAP environemt, at least for now. « |
2 months ago |
31261 | C. Thomas Tyler | Tweaks to make package installs even more reliable on apt-get systems. | 2 months ago |
31260 | C. Thomas Tyler | Enhanced reliability on apt-get systems by avoiding interactive prompts you can get from... 'apt-get install -y', e.g. "new kernel available" messages that cause a hang. « |
2 months ago |
31254 | C. Thomas Tyler | Refined fix to work for local and online installs. | 2 months ago |
31253 | C. Thomas Tyler | Fixed addtional bootstrapping issues in environments with bad umask. | 2 months ago |
31251 | C. Thomas Tyler | Implemented elaborate workaround to gnarly RHEL/dnf bug. | 2 months ago |
31248 | C. Thomas Tyler | Enhanced to do package installation earlier so we don't get errors if required utilities... like rsync, that would be installed later by packages anyway, don't cause an abort. Fixed: SDP-1197 (Bug): install_sdp.sh now installs OS packages before checking for required utils like rsync. « |
2 months ago |
31243 | C. Thomas Tyler | Fixed typo in error message. | 2 months ago |
31241 | C. Thomas Tyler | Fixed issues related to operating on security hardened OS base images, specifically with... a non-default root umask and crontab disabled by default. « |
2 months ago |
31228 | C. Thomas Tyler | Fixed 'p4login1' typo in docs. | 2 months ago |
31219 | C. Thomas Tyler | Cosmetic tweaks; non-functional change. | 2 months ago |
31213 | C. Thomas Tyler | Fixed test suite issue with CLI tests formatted as p4@PORT@USER@CLIENT. | 2 months ago |
31212 | C. Thomas Tyler | Corrected format of a test entry. | 2 months ago |
31210 | C. Thomas Tyler | Fixed issue with case-sensitivty of server spec name in configurable values. For example,... if the server spec name is p4d_edge_SITEX and is case-insensitive, the configurables displayed with p4d -cshow can look like P4D_EDGE_sitex and still be valid. An example of an issue this fixes that an edge server being migrated from Windows to Linux could have the run_if_edge.sh script fail to determine that the server is an edge server; a daily_checkpoint.sh would run fine interactively but would fail to execute from the crontab, due to the run_if_edge.sh not detecting it was an edge. The situation that could cause this would be that a ServerID could be p4d_edge_SYD but the lbr.replication configurable could be set as P4D_EDGE_SYD#lbr.replication=readonly #review-31211 « |
2 months ago |
31209 | C. Thomas Tyler | Fixed cosmetic typo. | 2 months ago |
31208 | C. Thomas Tyler | Merged down hot patch to web docs only (no functional change). | 2 months ago |
31207 | C. Thomas Tyler | Web doc update only; tweaked versions. | 2 months ago |
31206 | Will Kreitzmann | Packaged SDP 2024.2.31193. | 2 months ago |
31204 | Will Kreitzmann | Released SDP 2024.2.31193 (2025/01/17). Copy Up using 'p4 copy -r -b perforce_software-sd...p-dev'. « |
2 months ago |
31200 | Will Kreitzmann | Updated Version for release. | 2 months ago |
31198 | Will Kreitzmann |
Modified through swarm. #review-31199 |
2 months ago |
31196 | Will Kreitzmann |
Modified through swarm. #review-31197 |
2 months ago |
31194 | Will Kreitzmann |
Modified through swarm. #review-31195 |
2 months ago |
31193 | Will Kreitzmann | Regenerated docs for release. | 2 months ago |
31191 | Will Kreitzmann |
Modified through swarm. #review-31192 |
2 months ago |
31189 | Will Kreitzmann |
Modified through swarm. #review-31190 |
2 months ago |
31187 | Will Kreitzmann | Updated generated script man pages. | 2 months ago |
31185 | C. Thomas Tyler | Added more detailed information on The Site Directory (/p4/common/site). Adapted Makefi...le to generate HTML from Markdown for this special case where the /p4/common/site/ReadMe.md file deployed with the SDP in a runtime environment in the site folder generates an HTML elsewhere, in the SDP doc folder. Fixes SDP-722. « |
2 months ago |
31183 | C. Thomas Tyler | Rel notes WIP. | 2 months ago |
31182 | C. Thomas Tyler | Adapted opt_perforce_sdp_backup service to work with SELinux in enforcing mode. Added... logic from sdp_upgrade.sh that installs SDP the backup service into install_sdp.sh. With this adjustment, the service now specifies the "on disk" location of the file; no symlinks are allowed in the absolute path to the script (to keep SELinux happy). For clarity, 'User=root' was added to the systemd service file for the backup utility. « |
2 months ago |