Fix typos

This commit is contained in:
LinuxSquare 2023-12-31 16:18:29 +01:00
parent 057e93d8bf
commit 4d3385e1af

View file

@ -1,8 +1,8 @@
#!/sbin/openrc-run #!/sbin/openrc-run
supervisor=supervise-daemon supervisor=supervise-daemon
name="TUN Module Permission setter" name="tun module permission setter"
description="Setting the permission of /dev/net/tun to 666" description="setting the permission of /dev/net/tun to 666"
command=$(which chmod) command=$(which chmod)
command_args="0666 /dev/net/tun" command_args="0666 /dev/net/tun"
@ -10,4 +10,4 @@ command_user="root"
depend() { depend() {
need modules need modules
} }