추가 확인 필요시스템 변경 없음
확인 명령
AVIDEO_ROOT=""
for candidate in /var/www/html/AVideo /var/www/AVideo /opt/AVideo; do
if [ -d "$candidate" ]; then AVIDEO_ROOT="$candidate"; break; fi
done
printf 'AVIDEO_ROOT=%s
' "$AVIDEO_ROOT"
if [ -n "$AVIDEO_ROOT" ]; then
git -C "$AVIDEO_ROOT" remote get-url origin 2>/dev/null || true
git -C "$AVIDEO_ROOT" rev-parse HEAD 2>/dev/null || true
git -C "$AVIDEO_ROOT" describe --tags --always 2>/dev/null || true
test -f "$AVIDEO_ROOT/videos/configuration.php" && echo 'configuration.php: present' || echo 'configuration.php: not found'
fi
php -v 2>/dev/null | head -1 || true
apache2ctl -v 2>/dev/null || apachectl -v 2>/dev/null || true
docker ps --format '{{.ID}} {{.Image}} {{.Names}}' 2>/dev/null | grep -Ei 'avideo|streamer|encoder' || true- 예상 결과
- 영향 확인 예시: 공식 권고의 영향 버전 또는 수정 commit과 현재 revision을 대조해야 합니다. / 추가 확인 예시: 컨테이너 이미지 digest와 내부 애플리케이션 revision을 추가 확인합니다.
- 판정·성공 기준
- 공식 권고의 영향 버전 또는 수정 commit과 현재 revision을 대조해야 합니다. 컨테이너 이미지 digest와 내부 애플리케이션 revision을 추가 확인합니다.