Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addition of CHANGELOG file #4

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions .github/workflows/pamtester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ on: [push]
jobs:
pamtester:
runs-on: ubuntu-latest
steps:
- run: sudo apt install pamtester gcc make libselinux1-dev
- run: make
- run: sudo make install INSTALLDIR=/usr/lib/x86_64-linux-gnu
- run: sudo cp pamtester/xdg_runtime_dir
- run: sudo adduser testuser
- run: pamtester -v xdg_runtime_dir testuser open_session
- run: test -d /run/user/$(id -u testuser)

steps:
- run: sudo apt install pamtester gcc make libselinux-dev libpam-dev
- uses: actions/checkout@v4
- run: make
- run: sudo make install INSTALLDIR=/usr/lib/x86_64-linux-gnu/security
- run: sudo cp pamtester/xdg_runtime_dir /etc/pam.d/xdg_runtime_dir
- run: sudo adduser testuser
- run: sudo pamtester -v xdg_runtime_dir testuser open_session
- run: test -d /run/user/$(id -u testuser)
- run: test $(stat --format=%U /run/user/$(id -u testuser)) == testuser
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# pam_xdg_runtime_dir

# 1.0.0 2024-01-10

- First Release