Skip to content
This repository was archived by the owner on Oct 23, 2021. It is now read-only.

Commit e38fe02

Browse files
committed
v0.22 Bug fixed
1 parent ef6168b commit e38fe02

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

Changes

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
v0.22 2015-11-07
2+
* Bug fixed
3+
14
v0.21 2015-11-06
2-
* Fixed #3
5+
* Bug fixed
36

47
v0.20 2015-11-04
58
* Hide local device

INSTALL

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@
22

33
Run "install.sh"
44

5-
2. Install init script
5+
2. Configure init script
66

7-
See "init/README.txt"
7+
Read "init/README.txt"
88

99
3. Be a member of "sudodev" group
1010

1111
After run sudodevd (do this via service manager such as systemctl),
12-
the "sudodev" group will be create, you should add to this group
12+
the "sudodev" group will be created, you need add to this group
1313
to make sudodevd take effect.
1414

1515
After startup sudodevd , run:
16-
1716
sudo sh -c "gpasswd -a $USER sudodev && reboot"
1817

19-
If no error reported, sudodev will take effect after reboot.
18+
Sudodev will take effect after reboot.
2019

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ git clone https://github.com/Arondight/sudodev.git sudodev
1616
cd sudodev
1717
```
1818

19-
Goto [INSTALL][ID_INSTALL] for installation instructions.
19+
Read [INSTALL][ID_INSTALL] for installation.
2020

21-
Read [init/README.txt][ID_INIT_README_TXT] for how to configure the inti script.
21+
Read [init/README.txt][ID_INIT_README_TXT] for configure.
2222

2323
[ID_INSTALL]: INSTALL "Read INSTALL"
2424
[ID_INIT_README_TXT]: init/README.txt "Read init/README.txt"
@@ -31,7 +31,7 @@ Read [init/README.txt][ID_INIT_README_TXT] for how to configure the inti script.
3131

3232
2. `sudodevd`
3333

34-
This is the daemon, you should not start this manually, you are recommanded to
34+
This is the daemon, you should not start this manually, you are recommanded to
3535
start it via your sevice manager such as systemctl and initctl (for earlier,
3636
`/etc/init.d/sudodevd` for SysVinit and `/etc/rc.d/rc.sudodevd` for BSD init).
3737

init/README.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,13 @@ init program is:
5757

5858
4. BSD init (for exmaple, Slackware Linux)
5959

60-
For BSD init, it is a bit complicated, you can not config it only by type
61-
some conmands. You have to write script in suitable location of some files.
60+
For BSD init, it is a bit complicated, you can configure these by conmands.
61+
You have to write lines in suitable location of some files manually.
6262

6363
Set start/stop runlevels:
6464
Write the line below to /etc/rc.d/rc.4 and /etc/rc.d/rc.M:
6565
[ -x /etc/rc.d/rc.sudodevd ] && /etc/rc.d/rc.sudodevd start
66+
6667
Write the line below to /etc/rc.d/rc.0, /etc/rc.d/rc.6 and /etc/rc.d/rc.K:
6768
[ -x /etc/rc.d/rc.sudodevd ] && /etc/rc.d/rc.sudodevd stop
6869

src/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#ifndef __CONFIG_H__
2020
#define __CONFIG_H__
2121

22-
#define VERSION ("0.21")
22+
#define VERSION ("0.22")
2323

2424
/* Never modify this { */
2525
#define SUDODEV_GROUP ("sudodev")

0 commit comments

Comments
 (0)