diff options
author | Sam Hartman <hartmans@debian.org> | 2021-08-26 13:11:39 -0600 |
---|---|---|
committer | Steve Langasek <steve.langasek@canonical.com> | 2021-09-15 17:52:40 -0700 |
commit | aee2095b9a13a3abde1ba39f891a60918f112686 (patch) | |
tree | e02978dfd845fb513877f07c27f7186a75577752 /debian/libpam0g.postinst | |
parent | 01dd10ca3efd89193c3f0429064b54bc09501eec (diff) | |
download | pam-aee2095b9a13a3abde1ba39f891a60918f112686.tar.gz pam-aee2095b9a13a3abde1ba39f891a60918f112686.tar.bz2 pam-aee2095b9a13a3abde1ba39f891a60918f112686.zip |
libpam0g.postinst: fix syntax error in systemd unit restart
Diffstat (limited to 'debian/libpam0g.postinst')
-rw-r--r-- | debian/libpam0g.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/libpam0g.postinst b/debian/libpam0g.postinst index 396b35ca..6279f684 100644 --- a/debian/libpam0g.postinst +++ b/debian/libpam0g.postinst @@ -60,7 +60,7 @@ if test -d /run/systemd/system; then if systemctl try-restart $1; then : else - failed = "$failed $1" + failed="$failed $1" fi } else # not systemd |