simple zram service script
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
NAME = zram |
|
LOCATION = /etc/init.d |
|
|
|
install: |
|
mkdir -p $(LOCATION) |
|
cp -f zram.sh $(LOCATION)/$(NAME) |
|
chmod 755 $(LOCATION)/$(NAME) |
|
echo $(NAME) installed in $(LOCATION) |
|
|
|
uninstall: |
|
rm $(NAME) $(LOCATION)/$(NAME) |
|
echo $(NAME) uninstalled from $(LOCATION) |
|
|
|
.PHONY: install uninstall
|
|
|