mirror of
https://github.com/roddhjav/apparmor.d.git
synced 2024-12-26 15:06:45 +01:00
2332f71b17
Some checks failed
Ubuntu / check (push) Has been cancelled
Ubuntu / build (default, ubuntu-22.04) (push) Has been cancelled
Ubuntu / build (default, ubuntu-24.04) (push) Has been cancelled
Ubuntu / build (full-system-policy, ubuntu-22.04) (push) Has been cancelled
Ubuntu / build (full-system-policy, ubuntu-24.04) (push) Has been cancelled
Ubuntu / tests (push) Has been cancelled
32 lines
720 B
Bash
32 lines
720 B
Bash
#!/usr/bin/env bats
|
|
# apparmor.d - Full set of apparmor profiles
|
|
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
load common
|
|
|
|
@test "groupadd: Create a new group" {
|
|
sudo groupadd user2
|
|
}
|
|
|
|
@test "groupadd: Create a new system group" {
|
|
sudo groupadd --system system2
|
|
}
|
|
|
|
@test "groupadd: Create a new group with the specific groupid" {
|
|
sudo groupadd --gid 3000 user3
|
|
}
|
|
|
|
@test "groupmod: Change the group name" {
|
|
sudo groupmod --new-name user22 user2
|
|
}
|
|
|
|
@test "groupmod: Change the group ID" {
|
|
sudo groupmod --gid 2222 user22
|
|
}
|
|
|
|
@test "groupdel: Delete newly created group" {
|
|
sudo groupdel user22
|
|
sudo groupdel system2
|
|
sudo groupdel user3
|
|
}
|