diff options
| author | 2025-11-27 20:25:04 +0100 | |
|---|---|---|
| committer | 2025-11-27 20:25:04 +0100 | |
| commit | 54e6c9f2b9a235c406daed1fea876145d15da2da (patch) | |
| tree | 7a5b0ad0ce8eb7098ddc9a2a233f501f83392078 /src/init | |
| parent | 278ef48ab6da8b30a940da722d3701c84fa1e5e2 (diff) | |
Bump to next snapshot version. Make scripts more efficient by avoiding call of cat
Diffstat (limited to 'src/init')
| -rwxr-xr-x | src/init | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ end function checkUser set -l user $argv[1] - cat /etc/passwd | grep -q -E "^$user:" + grep -q -E "^$user:" < /etc/passwd return $status end @@ -182,4 +182,4 @@ touch $_LOG && chmod 777 $_LOG setupSSH; or return $status # run ssh daemon -exec /usr/sbin/sshd -D -e
\ No newline at end of file +exec /usr/sbin/sshd -D -e |
