-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* CI integration * RPM (un)install scripts Signed-off-by: Toni Uhlig <[email protected]>
- Loading branch information
Showing
5 changed files
with
84 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: RPM Build | ||
on: | ||
schedule: | ||
# At the end of every day | ||
- cron: '0 0 * * *' | ||
push: | ||
branches: | ||
- main | ||
- tmp | ||
pull_request: | ||
branches: | ||
- main | ||
types: [opened, synchronize, reopened] | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Ubuntu Prerequisites | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install fakeroot alien autoconf automake cmake libtool pkg-config gettext libjson-c-dev flex bison libpcap-dev zlib1g-dev libcurl4-openssl-dev libdbus-1-dev | ||
- name: Build RPM package | ||
run: | | ||
cmake -S . -B build-rpm -DBUILD_EXAMPLES=ON -DBUILD_NDPI=ON -DCMAKE_BUILD_TYPE=Release | ||
cmake --build build-rpm --parallel | ||
cd build-rpm | ||
cpack -G RPM | ||
cd .. | ||
- name: Convert/Install RPM package | ||
run: | | ||
fakeroot alien --scripts --to-deb --verbose ./build-rpm/nDPId-*.rpm | ||
sudo dpkg -i ./build-rpm/ndpid_*.deb | ||
- name: Upload RPM | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: nDPId-rpm-packages | ||
path: build-rpm/*.rpm |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
|
||
if [ $1 == 0 ]; then | ||
rm -rf /run/nDPId /run/nDPIsrvd | ||
userdel ndpid || true | ||
userdel ndpisrvd || true | ||
groupdel ndpisrvd-distributor || true | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/sh | ||
|
||
if [ $1 == 1 ]; then | ||
groupadd --system ndpisrvd-distributor | ||
adduser --system --no-create-home --shell=/bin/false --user-group ndpisrvd | ||
adduser --system --no-create-home --shell=/bin/false --user-group ndpid | ||
|
||
cat <<EOF | ||
**************************************************************************** | ||
* The user whom may want to access DPI data needs access to: * | ||
* /run/nDPIsrvd/distributor * | ||
* * | ||
* To make it accessible to [USER], type: * | ||
* sudo usermod --append --groups ndpisrvd-distributor [USER] * | ||
* * | ||
* Please note that you might need to re-login to make changes take effect. * | ||
**************************************************************************** | ||
EOF | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
if [ $1 == 0 ]; then | ||
systemctl stop ndpisrvd.service | ||
fi |