-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/2036_add_video_none
- Loading branch information
Showing
61 changed files
with
2,877 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,14 +7,14 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- name: tmpfs run user | ||
run: sudo mkdir -p /run/user/$(id -u) ; sudo chown $(id -u) /run/user/$(id -u) | ||
- uses: mirromutth/mysql[email protected] | ||
- uses: getong/mariadb[email protected] | ||
with: | ||
character set server: 'utf8' # Optional, default value is 'utf8mb4'. The '--character-set-server' option for mysqld | ||
collation server: 'utf8_general_ci' # Optional, default value is 'utf8mb4_general_ci'. The '--collation-server' option for mysqld | ||
mariadb version: '10.4.10' # Optional, default value is "latest". The version of the MariaDB | ||
mysql database: 'ravada' # Optional, default value is "test". The specified database which will be create | ||
mysql root password: root | ||
mysql user: 'rvd_user' # Required if "mysql root password" is empty, default is empty. The superuser for the specified database. Can use secrets, too | ||
mysql password: Pword12345* | ||
mysql user: 'rvd_user' | ||
mysql password: 'Pword12345*' | ||
- name: Update packages | ||
run: sudo apt update | ||
- name: Install auth packages | ||
|
@@ -34,10 +34,6 @@ jobs: | |
run: cat /etc/ravada.conf | ||
- name: Install mysql perl | ||
run: sudo apt install libdbd-mysql-perl libhtml-lint-perl | ||
- name: create mysql user | ||
run: sudo mysql -u root --password=root --protocol=tcp -h localhost -e "create user 'rvd_user'@'%' IDENTIFIED WITH mysql_native_password BY 'Pword12345*'" | ||
- name: allow mysql user | ||
run: sudo mysql -u root --password=root --protocol=tcp -h localhost -e "grant all on ravada.* to 'rvd_user'@'%'" | ||
- name: Test mojo grants | ||
run: prove -l t/mojo/30_grants.t | ||
- name: Test critic | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,6 @@ | |
|
||
**Bugfixes** | ||
|
||
- Node Option Not Available [\#2032] | ||
|
||
**Refactors** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,4 +37,9 @@ | |
,file => '/var/log/ravada/rvd_front.log' | ||
,level => 'debug' | ||
} | ||
,status => { | ||
allowed => [ | ||
'127.0.0.1' | ||
] | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.