diff --git a/shadow.changes b/shadow.changes index db84aad..62c706d 100644 --- a/shadow.changes +++ b/shadow.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri May 22 11:21:15 UTC 2020 - Fabian Vogt + +- Use pure #!/bin/sh in: + * useradd.local + * userdel-post.local + * userdel-pre.local + ------------------------------------------------------------------- Fri Jan 24 08:09:23 UTC 2020 - Michael Vetter diff --git a/shadow.spec b/shadow.spec index 35303d5..9c73f09 100644 --- a/shadow.spec +++ b/shadow.spec @@ -1,7 +1,7 @@ # # spec file for package shadow # -# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/useradd.local b/useradd.local index 2caf444..06bbc2d 100644 --- a/useradd.local +++ b/useradd.local @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Here you can add your own stuff, that should be done for every user who # was new created. diff --git a/userdel-post.local b/userdel-post.local index 6f780a1..7b8478e 100644 --- a/userdel-post.local +++ b/userdel-post.local @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Here you can add your own stuff, that should be done for every user # which we deleted. diff --git a/userdel-pre.local b/userdel-pre.local index 7fa5272..d47e046 100644 --- a/userdel-pre.local +++ b/userdel-pre.local @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # # Here you can add your own stuff, that should be done for every user # who will be deleted.