7 lines
103 B
Bash
7 lines
103 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
describe="Install stuff on the system!"
|
||
|
|
||
|
super_apply() {
|
||
|
cp files/sudoers /etc/sudoers
|
||
|
}
|